JAVA:输出十以内的奇数
【摘要】
思路
while循环十以内数字continue跳过偶数这一轮循环
代码
public class ji {
public static void main(String[] args) {
...
思路
- while循环十以内数字
- continue跳过偶数这一轮循环
代码
public class ji {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i=0;
System.out.println("十以内的奇数:");
while(i<10)
{
i++; //自增到1
if(i%2==0) {
continue; //偶数则跳过这轮循环
}
System.out.println(i); //打印i
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
演示:
文章来源: chuanchuan.blog.csdn.net,作者:川川菜鸟,版权归原作者所有,如需转载,请联系作者。
原文链接:chuanchuan.blog.csdn.net/article/details/125467519
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)