 
		承诺太虚伪
2017-04-20 22:16
参考中 int three=0; 都已经给three赋值为0了 怎么下面有three=one+two;
 
				 int three = 0 ;
        three=one+two;
        System.out.println("three = one + two ==> "+three);
        three+=one;
        System.out.println("three += one ==> "+three);
        three-=one;
        System.out.println("three -= one ==> "+three);
        three*=one;
        System.out.println("three *= one ==> "+three);
        three/=one;
        System.out.println("three /= one ==> "+three);
        three%=one;
        System.out.println("three %= one ==> "+three);
Java入门第一季(IDEA工具)
1168089 学习 · 18754 问题
相似问题