问答详情
源自:3-3 Java中的赋值运算符

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

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

提问者:慕工程7111943 2018-02-27 16:41

个回答

  • 阳光我的挚爱
    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行 看下