问答详情
源自:8-9 Java 中的 static 使用之静态方法

提交代码报错

为什么代码打对了还是报错?

public class HelloWorld{
    static int score1=86;
    static int score2=92;
    public static int sum(){
     return score1+score2;
    }
    public static void main(String[] args){
    int allScore=HelloWorld.sum();
    System.out.println("总分:" + allScore);
    
}


提问者:JyunYu 2016-04-17 00:36

个回答

  • 流逝的回忆已成空白
    2016-05-16 11:44:44

    http://img.mukewang.com/57394213000121a507010259.jpg

    知识点还没有完全掌握!还需努力!

  • 菜鸟先生
    2016-04-17 07:26:14

    少一个“}”