为什么不用重新输入theree=one+two等就能重新赋值
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
System.out.println(three=one+two);
System.out.println(three+=one);
System.out.println(three-=one);
System.out.println(three*=one);
例如上面的几行代码,运行正常,然后还计算出正确的结果来了。
没有键入three=one+two、three+=one、、、等等就能完成重新赋值???