這樣也可以呀?
? ? ? ? System.out.println(three=one+two);
? ? ? ? System.out.println(three+=one);
? ? ? ? System.out.println(three-=one);
? ? ? ? System.out.println(three*=one);
? ? ? ? System.out.println(three/=one);
? ? ? ? System.out.println(three%=one);
為什么這樣也行
2017-03-21
這樣為什么不行呢 ,調(diào)用參數(shù)進(jìn)行計(jì)算,然后在輸出,在C語(yǔ)言中也有同的規(guī)則啊