问答详情
源自: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+=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);


提问者:连宏伟HW 2016-01-19 22:27

个回答

  • 这是人生的开始丶
    2016-02-23 13:47:29

    楼主字母打错了 你后面部分的one 打成ono

    其他都没问题

  • 一飞同学
    2016-01-20 22:27:56

          three/=one;

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

            three%=one;

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

     one   不是 ono   - -.

  • 图形界面
    2016-01-20 10:30:23

    没错的

  • 蜗牛想飞
    2016-01-19 22:42:00

    没错吧