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

最后的那个是怎么得出来的?

最后的那个是怎么得出来的?

倾唱G尐調 2015-12-02 14:57:23
three = one+ two ==>30three += one ==>40three -= one ==>30three *= one ==>300three /= one ==>30three %= one ==>0
查看完整描述

3 回答

?
泽济天下

TA贡献2条经验 获得超0个赞

%是取余 能整除就是0咯

查看完整回答
反对 回复 2015-12-02
?
倾唱G尐調

TA贡献1条经验 获得超0个赞

还是不明白,我把值代入 30%10=3 呀!

查看完整回答
反对 回复 2015-12-02
?
Perona

TA贡献355条经验 获得超403个赞

前面是字符串,后面是变量值

参考代码

public class HelloWorld{
    public static void main(String[] args) {
	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);
        }
}


查看完整回答
反对 回复 2015-12-02
  • 3 回答
  • 0 关注
  • 1120 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信