为什么不能写成three=one+two;
three+=one;
three-=one;
。。。。。。
System.out.println("three=one+two==>"+three);
System.out.println("three+=one==>"+three);
。。。。。。
为什么不能把要写的程序部分和要显示打印的部分像之前学习的内容一样写在一起呢?
你的意思是three=one+two;
System.out.println("three=one+two==>"+three);
three+=one;
System.out.println("three=one+two==>"+three);
。。。。。。
你的意思是这个吗
这是可以的呀