public class hello { public static void main(String[] args){ int sum=0; int a=0; while(sum<10){ System.out.println(a); sum=sum+a; a++; } } }
运行结果为1
2
3
4
为什么不会先输出0
肯定是可以输出0的,可能是你更改代码后没有保存。
看到没有,右边的滚轮向上滑动一些,就可以看到0了
a++在输出的后面,肯定是有0的
-,- 为啥我复制了你的代码是有输出0?