Compare commits

...

3 Commits

Author SHA1 Message Date
pyh2if57b e8e926a6ab 合并吧
1 year ago
pyh2if57b c876577d06 Add pro_02.java
1 year ago
pyh2if57b 210857d978 Add p_01
1 year ago

@ -0,0 +1 @@
#java

@ -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