问答详情
源自:3-3 Java中的赋值运算符

为什么算出来的答案与他给的答案不一样···本来按他的答案是理解的,但在现在又不懂了

为什么算出来的答案与他给的答案不一样···本来按他的答案是理解的,但在eclipse算的答案现在又不懂了

eclipse 答案是30/50/30/3000/30/0

提问者:阿斯arth 2016-01-18 20:41

个回答

  • 连宏伟HW
    2016-01-19 22:28:25

    你肯定是最后输出的;

    这样输

    int one = 10 ;

            int two = 20 ;

            int three = 0 ;

            three=one+two;

         System.out.println("three=one+two==>"+three);

            three+=one;

             System.out.println("three+=0ne==>"+three);

            three-=one;

             System.out.println("three-=one==>"+three);

            three*=one;

             System.out.println("three*=ono==>"+three);

            three/=one;

             System.out.println("three/=ono==>"+three);

            three%=one;

            System.out.println("three%=ono==>"+three);


  • 寂静的魔术师
    2016-01-19 17:55:31

    建议把代码都贴出来,你只给个结果怎么可能知道是哪里错了。

  • xuyimanbu
    2016-01-18 20:56:29

    细节吧。。