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

来源:3-3 Java中的赋值运算符

Iam如初

2018-10-10 20:16

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回答

  • Iam如初
    2018-10-13 17:38:17

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

  • qq_一二三木头人_2
    2018-10-10 21:13:03

    out,不是oue

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

  • 慕沐4555500
    2018-10-10 20:31:09

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

  • 慕运维8376086
    2018-10-10 20:22:03

    中间是out,不是oue

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题