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

帮我看看代码有什么问题

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

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

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

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

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

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

}

}


正在回答

2 回答

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.print("three += one ==> " + three);

        three -= one;

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

        three *= one;

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

        three /= one;

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

        three %= one;

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

仔细看要求。他要的结果有好几个,而你只赋了一次值,也就是:three = one + two;

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

System.out.println后面括号中“”里面的东西都会以原模原样出现在结果中,真正输出的值是+后面的变量的值,所以你的代码应该是全都输出30吧

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

举报

0/150
提交
取消

帮我看看代码有什么问题

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