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

我这样写有什么问题吗?怎么通过不了

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

    }

}

        

        


正在回答

5 回答

能运行的



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

能运行的啊!

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

不用输出

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

为啥,我能运行。你的运行不了呢?

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

慕UI1226964 提问者

对啊,我很无语,明明没有错
2017-09-24 回复 有任何疑惑可以回复我~

它要的输出是单独一个变量three,你这样输出是一个字符串"three = one + two ==>"再加一个变量three。

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

慕UI1226964 提问者

题目不就是这样要求输出这样的吗?
2017-09-24 回复 有任何疑惑可以回复我~
#2

绿万哥哥 回复 慕UI1226964 提问者

不是,我的意思它要你输出单独一个three就行了,所以你吧前面的字符串删了就ok
2017-10-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我这样写有什么问题吗?怎么通过不了

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