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

我是初学者,请问有谁知道下面这个是怎么输出的呢?麻烦你们啦~谢谢!

我是初学者,请问有谁知道下面这个是怎么输出的呢?麻烦你们啦~谢谢!

凡雪 2016-06-24 17:14:57
查看完整描述

4 回答

已采纳
?
lanchc

TA贡献3条经验 获得超8个赞

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


查看完整回答
2 反对 回复 2016-06-24
  • 凡雪
    凡雪
    嗯,我明白啦,真的谢谢你!
?
qq_wannamoer_03517640

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

额int one=10;int two=20;

 

查看完整回答
反对 回复 2016-06-25
?
慕粉3291149

TA贡献71条经验 获得超52个赞

one=10  two=20

第一步  three = one + two = 10 + 20 = 30

第二步  three +=one 意思是 three = three + one= 30 + 10 = 40

第三步 three -= one 意思是 three = three - one = 40 - 10 = 30

第三步 three *= one 意思是 three = three*one = 30 * 10 = 300

第四步 three /= one 意思是 three = three/one = 300/30 = 10(这里/意思是除法 就是three除以one得到的商)

第五步 three %= one 意思是 three = three%one = 10%10 = 0 (这里%意思是取余  就是three除以one得到的余数)

查看完整回答
反对 回复 2016-06-24
  • 慕粉3291149
    慕粉3291149
    上面第四步写错了 应该是 three = three/one = 300/10 = 30 第五步写错了 应该是 three = three%one = 30%10 = 0 解释没错
  • 凡雪
    凡雪
    好的!谢谢你!
  • 慕粉3291149
    慕粉3291149
    亲 同意就采纳一下啊
?
化茧成蛹

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

问题说清楚一点,不知道你说的问题,该怎么回答

查看完整回答
反对 回复 2016-06-24
  • 4 回答
  • 0 关注
  • 1393 浏览

添加回答

举报

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