public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
System.out.println("three+=one==>"+40);
System.out.println("three-=one==>"+30);
System.out.println("three*=one==>"+300);
同样可以输出
three+=one==>40
three-=one==>30
three*=one==>300
这是运算得出来的结果,three是一个变量,而不是常量,变量值可以重新被覆盖的。
那是因为输出的就是40;30;300; 你把这些数分别换成three+=one;three-=one;three*=one;试试,