Compiler error: “class, interface, or enum expected”

前端 未结 6 1723
时光说笑
时光说笑 2020-11-27 17:29

I have been troubleshooting this program for hours, trying several configurations, and have had no luck. It has been written in java, and has 33 errors (lowered from 50 befo

6条回答
  •  -上瘾入骨i
    2020-11-27 18:16

    Every method should be within a class. Your method derivativeQuiz is outside a class.

    public class ClassName {
    
     ///your methods
    }
    

提交回复
热议问题