慕工程7111943
2018-02-27 16:41
运行失败
HelloWorld.java:36: error: class, interface, or enum expected
}
^
1 error 是什么问题,编译不过?附加代码如下
最简单代码
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));
}
}
最底下多了两个括号({})
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) ;
你这样写应该就可以了
36行是不是多了个括号。。
14行代码反斜杠你大写了
除法参数类型不匹配
36行 看下
Java入门第一季(IDEA工具)升级版
1166696 学习 · 17593 问题
相似问题