请问尽管这个过程不能这样算,但运行结果应该也都是one的值,就是10呀,为什么会没有运行结果呢。
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = one+two;
int three+=one;
int three-=one;
int three*=one;
int three/=one;
int three%=one;
System.out.println(three);
System.out.println(three+);
System.out.println(three-);
System.out.println(three*);
System.out.println(three/);
System.out.println(three%);
}
}