求親愛(ài)的大神指點(diǎn)啊
為什么不能寫(xiě)成three=one+two;
? ? ? ? ? ? ? ? ? ? ? ?three+=one;
? ? ? ? ? ? ? ? ? ? ? ?three-=one;
? ? ? ? ? ? ? ? ? ? ? ?。。。。。。
? ? ? ? ? ? ? ? ? ? ??System.out.println("three=one+two==>"+three);
? ? ? ? ? ? ? ? ? ? ? ?System.out.println("three+=one==>"+three);?
? ? ? ? ? ? ? ? ? ? ? ?。。。。。。
為什么不能把要寫(xiě)的程序部分和要顯示打印的部分像之前學(xué)習(xí)的內(nèi)容一樣寫(xiě)在一起呢?
2015-08-20
你的意思是three=one+two;
? ? ? ? ? ? ? ? ?System.out.println("three=one+two==>"+three);
? ? ? ? ? ? ? ? ??three+=one;
? ? ? ? ? ? ? ? ??System.out.println("three=one+two==>"+three);
? ? ? ? ?。。。。。。
? ? ?你的意思是這個(gè)嗎
? ? 這是可以的呀