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

JAVA入门第一季中3-3编程题

JAVA入门第一季中3-3编程题

断断续续i 2016-10-18 09:16:02
搞不懂是什么意思。。。。。 (话说猿问怎么不能发图片呢)
查看完整描述

3 回答

已采纳
?
ziom

TA贡献948条经验 获得超1109个赞

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


查看完整回答
反对 回复 2016-10-18
点击展开后面5
?
纪小M

TA贡献85条经验 获得超144个赞

//img1.sycdn.imooc.com//5805e896000133d600480065.jpg

谁说不能发图的~

查看完整回答
反对 回复 2016-10-18
?
ziom

TA贡献948条经验 获得超1109个赞

是不知道怎么写吗

查看完整回答
反对 回复 2016-10-18
  • 断断续续i
    断断续续i
    是啊 他说是编写代码 实现那个结果 怎么写啊到底
  • 3 回答
  • 0 关注
  • 1485 浏览

添加回答

举报

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