摘要: Java循环结构 while循环 public class Test { public static void main(String args[]) { int x = 10; while( x < 20 ) { System.out.print("value of x : " + x ); x+ 阅读全文
posted @ 2021-09-13 15:49 图二UR 阅读(45) 评论(0) 推荐(0)