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

(初学者)为什么按自己最笨的方法能运行但是答案是错的啊~

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        int s1 = one+two;

        System.out.println("three = one +two==>"+s1);

        int s2 =three+one;

        System.out.println("three += one ==>"+s2);

        int s3 =three-one;

        System.out.println("three -= one ==>"+s3);

        int s4 =three*one; 

        System.out.println("three *= one ==>"+s4);

        int s5 = three/one;                 

        System.out.println("three /= one ==>"+s5);

        int s6 = three%one;

        System.out.println("three %= one ==>"+s6);

}

}


正在回答

5 回答

代码没问题,应该是没看清楚题目要求吧

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

答案显示和题目不一样... 我的运行之后是30 10 -10 0 0 0

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

答案没有错啊

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

哪儿错了?你想要什么答案?

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

慕粉0727548769 提问者

和答案不一样运行结果是 30 10 -10 0 0 0
2019-07-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

(初学者)为什么按自己最笨的方法能运行但是答案是错的啊~

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