> 时:
> java时循环是一种控制流语句,用于重复执行语句块,直到给定条件评估为false为止。一旦条件变为false,执行程序中的循环后立即行。 java中的while循环的语法:
while (test_expression) { // statements update_expression; } condition is evaluated before each iteration of the loop if condition is true, the code block inside the while loop will execute the process repeats until condition is false
控件进入ware循环。
测试条件。
example 1: display numbers from 1 to 5 // program to display numbers from 1 to 5 class main { public static void main(string[] args) { // declare variables int i = 1, n = 5; // while loop from 1 to 5 while(i <= n) { system.out.println(i); i++; } } } output: 1 2 3 4 5
program: public class count { public static void main(string[] args) { int count=1; while (count<=5){ count=count+1; system.out.println("count: "+count); } } } output: count: 2 count: 3 count: 4 count: 5 count: 6
>任务2:
program: public class count1 { public static void main(string[] args) { int count=5; while (count>=1) { count=count-1; { system.out.println("count:" +count); } } } } output: count:4 count:3 count:2 count:1 count:0
任务3:
program: public class count2 { public static void main (string args[]) { int count=0; while(count<10) { count=count+2; { system.out.println("count:" +count); } } } } output: count:2 count:4 count:6 count:8 count:10
>任务4:
program: public class Count3 { public static void main (String args[]) { int count=1; while(count<=10) { count=count+2; { System.out.println("count:" +count); } } } } output: count:3 count:5 count:7 count:9 count:11
参考:
以上就是循环时:的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号