Java while循环
只要给定条件为真,Java编程语言中的while循环" title="while循环">while循环语句就会重复执行目标语句。
语法
while循环的语法是-
while(Boolean_expression) {//声明
}
在此,一个或多个语句可以是单个语句或语句块。条件可以是任何表达式,并且true是任何非零值。
执行时,如果boolean_expression结果为true,则将执行循环内的动作。只要表达式结果为真,这将继续。
当条件变为假时,程序控制传递到紧随循环的那一行。
流程图
在这里,while循环的关键是循环可能永远不会运行。当测试表达式并且结果为false时,将跳过循环体,并执行while循环之后的第一条语句。
示例
public class Test {public static void main(String args[]) {
int x = 10;
while( x < 20 ) {
System.out.print("value of x : " + x );
x++;
System.out.print("\n");
}
}
}
这将产生以下结果-
输出结果
value of x : 10value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19
以上是 Java while循环 的全部内容, 来源链接: utcz.com/z/330782.html