==>是什么有什么用?
不加不也能正常運行嗎?
? int one = 10 ;
? ? ? ?int two = 20 ;
? ? ? ?int three = 0 ;
? ? ? ?three = one + two ;
? ??
? ? ? ?System.out.println(three = one + two);
? ? ? ?System.out.println( ?three += one ?);
? ? ? ?System.out.println(three -= one);
? ? ? ?System.out.println( three *= one);
? ? ? ?System.out.println( three /= one);
? ? ? ?System.out.println( three %= one);
2016-07-17
代碼上不用寫,那是結(jié)果等于多少的意思,不用糾結(jié)
2016-07-14
另外為什么別人的代碼都和我的不一樣?