摘要: 循环结构 while while( 布尔表达式 ) { // 循环体 } 只要布尔表达式为True,就会一直反复执行循环体。 示例: public class Test { public static void main(String args[]) { int x = 10; while( x < 阅读全文
posted @ 2021-09-20 20:47 测试开发Gang 阅读(96) 评论(0) 推荐(0)