编译不过是哪里出现问题?仔细检查没检查出问题,求指教!

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

慕工程7111943

2018-02-27 16:41

运行失败 HelloWorld.java:36: error: class, interface, or enum expected } ^ 1 error 是什么问题,编译不过?附加代码如下http://img3.mukewang.com/5a95197100011ed205290385.jpg

写回答 关注

7回答

  • 阳光我的挚爱
    2018-05-29 16:57:28

    最简单代码

    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==>"+(one+two));
            System.out.println("three+=one==>"+(three+=one));
            System.out.println("three-=one==>"+(three-=one));
            System.out.println("three*=one==>"+(three*=one));
            System.out.println("three/=one==>"+(three/=one));
            System.out.println("three%=one==>"+(three%=one));
        }
    }

  • GODlee
    2018-05-15 17:30:34

    最底下多了两个括号({})

  • Mr_syl
    2018-03-26 16:42:34

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

            three += one;

             System.out.println(three) ;

            three -= one;

              System.out.println(three) ;

            three *= one;

              System.out.println(three) ;

            three /= one;

             System.out.println(three) ;

            three %= one;

            System.out.println(three) ; 

          你这样写应该就可以了

            


  • 我不会你还让我
    2018-02-27 22:49:53

    36行是不是多了个括号。。


  • Java小黑白
    2018-02-27 17:09:31

    14行代码反斜杠你大写了

  • 活在梦里的人
    2018-02-27 17:02:21

    除法参数类型不匹配

  • NULL000
    2018-02-27 16:59:49

    36行 看下

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

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

1166696 学习 · 17593 问题

查看课程

相似问题