最赞回答 / 潘哥哥
因为:满足sum>20时,执行break;语句,就跟出for循环了,后面的System语句就不再执行。break;语句是跳出循环的,可以你弄混了,以为是跳出if语句。
2018-09-13
最新回答 / 你大大爷
public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; three = one + two; System.out.println("three = one + two ==> " + three); three += one; Syst...
2018-09-12