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

对%的计算结果的疑问

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

        

这段代码的最好为什么three%=one的结果是0呢,three此时为30,30%10因该为3才对啊

正在回答

1 回答

%是取余,30除以10的余数是0!!!并不是3!!!!1

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

提问者

非常感谢
2017-04-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

对%的计算结果的疑问

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