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

不知道哪里出错了

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﹢=one==>"﹢three);

        three﹣=one;

        System.out.println("three﹣=one==>"﹢three);

        three*=one;

        System.out.println("three*=one==>"﹢three);

        three/=one;

        System.out.println("three/=one==>"﹢three);

        three%=one;

        System.out.println("three%=one==>"﹢three);

        


提问者:慕学习者666 2018-05-21 17:30

个回答

  • 慕慕237847
    2018-05-21 18:05:15
    已采纳

    https://img3.mukewang.com/5b0299d00001991704220829.jpg这是我的代码

  • 此事无关风和雨
    2018-05-28 10:44:46

     three+=one;

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

            three-=one;

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

    这个是正解, 要注意,如 “+=” 此类运算符中间一定是没有空格滴

  • 慕慕237847
    2018-05-21 18:02:23

    我直接把你的代码放在了本地运行了一次,你的标点符号全部都是中文吧?