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

为什么老是说我该节代码有错,请问有人知道是哪里错了吗?能输出的。

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

        
	}
}


正在回答

2 回答

没错啊,可以输出。

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

three的值一直在变化 啊 。。。

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

举报

0/150
提交
取消

为什么老是说我该节代码有错,请问有人知道是哪里错了吗?能输出的。

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