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

看了好多遍还是不知道那里错了,请大神指教?

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

       three=one+two;

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

        three+=one;

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

        three-=one;

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

        three*=one;

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

        three/=one;

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

        three%=one;

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

    

        

        

        


正在回答

3 回答

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

}

}

我给你改完了,你看看你的代码和我写的是不是一样。注意两点结尾的}你有几个。println这个单词是否打对了。

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

离觞殇 提问者

谢谢啦
2019-03-01 回复 有任何疑惑可以回复我~
#2

慕用8557428

+ three在一开始加一次就可以了吧。不用在每个打印里都加一次把。如果加的话,会重叠。
2019-03-09 回复 有任何疑惑可以回复我~

+ three在一开始加一次就可以了吧。不用在每个打印里都加一次把。如果加的话,会重叠。

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

weixin_慕码人5582953

不会重叠,我就是全部加的。
2019-03-25 回复 有任何疑惑可以回复我~
#2

qq_慕仔3192846

要加,不加的话就没有three的输出值,只输出""里面的东西
2019-04-13 回复 有任何疑惑可以回复我~

System.out.println

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

离觞殇 提问者

谢谢啦
2019-03-01 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

看了好多遍还是不知道那里错了,请大神指教?

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