Java循环结构

while循环 只要布尔表达式为true,循环体会一直执行下去。html public class Test { public static void main(String args[]) { int x = 10; while( x < 20 ) { System.out.print("value of x : " + x );
相关文章
相关标签/搜索