> 时:
> java时循环是一种控制流语句,用于重复执行语句块,直到给定条件评估为false为止。一旦条件变为false,执行程序中的循环后立即行。java中的while循环的语法:
while (test_expression) { // statements update_expression; }condition is evaluated before each iteration of the loopif condition is true, the code block inside the while loop will executethe process repeats until condition is falsejava中的while循环执行:>
控件进入ware循环。
测试条件。
如果是真的,请执行循环的主体。如果false,请退出循环。执行身体后,更新循环变量。>从步骤2重复直到条件为错误。
example 1: display numbers from 1 to 5// program to display numbers from 1 to 5class 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:12345
任务1:
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: 2count: 3count: 4count: 5count: 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:4count:3count:2count:1count: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:2count:4count:6count:8count: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:3count:5count:7count:9count:11
参考:

以上就是循环时:的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/362809.html
微信扫一扫
支付宝扫一扫