using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
int s = 0, num = 80;
while (s < num)
{
s++;
if(s>40)
{
break;
}
if((s%2)==0)
{
continue;
}
Console.WriteLine( s );
}
Console.ReadLine();
}
}
}

  

最新文章

  1. Android studio下gradle Robolectric单元测试配置
  2. jsp遍历、循环
  3. tomcat 协议之并发协议 Http11NioProtocol
  4. ASP.NET MVC下判断用户登录和授权的方法
  5. C迷途指针
  6. CSS3 必须要知道的10 个顶级命令
  7. 基本配置6-被忽悠进了CentOS 6
  8. Backup App&#39;s data without rooting the phone
  9. GRE协议学习与练习
  10. Jmeter使用——参数化
  11. Java学习之equals和hashcode的关系
  12. js变量提升和函数提升
  13. Spring Boot修改启动端口
  14. Trees on the level(指针法和非指针法构造二叉树)
  15. admin 显示多对多字段
  16. 机器学习之隐马尔科夫模型HMM(六)
  17. 在IWMS中的分页效果
  18. 3ds max学习笔记(十二)-- (弯曲:实例旋转楼梯)
  19. Mysql 查询decimal 引号‘’增加精度
  20. Sublime Text安装与配置

热门文章

  1. MVC批量导出数据方法
  2. JSP控制select不可再选择
  3. js的 new image()用法[转]
  4. 我的第一个JApplet-绘制笑脸
  5. Echarts双轴图的配置.
  6. jquery 1.9里面已经删除了toggle(fn1, fn2)函数
  7. C++ 让控制台运行到最后按下回车键才结束的3种方法
  8. 23讲 URL
  9. [ES7] Descorator: evaluated &amp; call order
  10. ExecutorService与Executors例子的简单剖析(转)