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

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

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

正在回答

7 回答

最简单代码

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

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

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

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

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

      你这样写应该就可以了

        


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

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


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

14行代码反斜杠你大写了

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

除法参数类型不匹配

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

36行 看下

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

举报

0/150
提交
取消

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

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