为了账号安全,请及时绑定邮箱和手机立即绑定

代码错误4

int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        three=one+two;
        three+=one;
        three-=one;
        three*=one;
        three/=one;
        three%=one;
        System.out.println("three=one+two==>"+three);
        System.out.println("three+=one==>"+three);
        System.out.println("three-=one==>"+three);
        System.out.println("three*=oneo==>"+three);
        System.out.println("three/=one==>"+three);
        System.out.println("three%=one==>"+three);


  输出不对  都是0

正在回答

5 回答

http://img1.sycdn.imooc.com//59021c670001b13206640404.jpg

重新实验的结果

0 回复 有任何疑惑可以回复我~

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

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

        

简单点这样不就行了,你那个为啥都是0,评论里有个哥们说了啦,那样写相当如不断重复赋值给three(最后一个three%=one;的结果为0),所以你输出的都是three=0(除开前面带的字符)

0 回复 有任何疑惑可以回复我~

我建议改为这样,就会有你想要的结果啦!!!http://img1.sycdn.imooc.com//58f8f255000109f305470376.jpg

0 回复 有任何疑惑可以回复我~

为什么要分开呢 ?不分开 他会用哪个呢


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165159    人
  • 解答问题       17581    个

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

进入课程

代码错误4

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信