本文主要是介绍JAVA基础第三天——循环语句,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
* for(初始化语句 ; 判断条件语句 ; 控制条件语句){
* 循环体语句;
* }
*
* 执行流程 :
* 1 执行初始化语句, 只执行一次
* 2 执行判断条件语句
* true : 执行第3步
* false : 结束for循环
* 3 执行循环体语句
* 4 控制条件语句
* 5 回到第2步
public class ForDemo2 {public static void main(String[] args) {// 定义统计变量 , 记录打印满足要求元素的个数int count = 0;for (int i = 1; i <= 1000; i++) {if (i % 3 == 0 && i % 5 == 0) {System.out.print(i + "\t");count++;if (count % 5 == 0) {System.out.println();}}}}}
public class ForDemo1 {public static void main(String[] args) {for(int i = 1 ; i <= 10000 ; i++){System.out.println("HelloWorld");}}
}
public class DoWhileDemo1 {public static void main(String[] args) {int i = 1;do {System.out.println("HelloWorld");i++;} while (i >= 3); }
}
public class WhileDemo1 {public static void main(String[] args) {int i = 1;while(i <= 5){System.out.println("HelloWorld");i++;}System.out.println("------------");/** ****** ****** ****** ******/int x = 1;while(x <= 4){System.out.println("*****");x++;}System.out.println("------------");int b = 1;while(b <= 4){int a = 1;while(a <= 5){System.out.print("*");a++;}System.out.println();b++;}}}
这篇关于JAVA基础第三天——循环语句的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!