我的代码是正确的吧应该

来源:3-3 Java中的赋值运算符

连宏伟HW

2016-01-19 22:27

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);


写回答 关注

4回答

  • 这是人生的开始丶
    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

    没错吧

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题