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

提示我第15行出错 请问是哪里有错了哦?

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

        three %= one ;

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

        


正在回答

4 回答

好的 谢谢哈(づ ̄3 ̄)づ╭❤~

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

out,不是oue

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

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

第一:这个程序后面要加上 } } 结尾,第二:你的 /= 那里的输出语句 out 写成了 oue

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

中间是out,不是oue

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

举报

0/150
提交
取消

提示我第15行出错 请问是哪里有错了哦?

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