怎么样让three+=one;打印的值以three=0为基础,而不是30.
int one = 10 ;
int two = 20 ;
int three = 0;
three=one+two;
System.out.println("three = one + two ==> "+three);
three+=one;
System.out.println("three += one ==> "+three);
怎么样让three+=one;打印的值以three=0为基础从而输出10,而不是40.