Add pro_02.java

pull/1/head
pyh2if57b 1 year ago
parent 210857d978
commit c876577d06

@ -0,0 +1,6 @@
int i=0;//初始化 i为0
while(i<10){//进入循环前先判断条件是否为true
System.out.println("hello world!");
i++;//每一次循环结束前i自增1
}
System.out.println("while循环结束了。i="+i);
Loading…
Cancel
Save