/********************************************
// Problems.java
\\
// Provide lots of syntax errors for the user to correct.
\\
********************************************/
public class Problems
{
public static void main(String[] args)
{
System.out.println ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
System.out.println ("This program still has lots of problems,");
System.out.print ("but" + "," + " if it prints this, you fixed them all.");
System.out.println (" *** Hurray! ***");
System.out.println ("!!!!!!!!!!!!!!!"+"!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
}
}
我在这里很新,想知道代码有什么问题。它所做的只是显示文本,但是当我编译它时,我收到一个错误“预期的类、接口或枚举”。
它说最后一行(最后一行}
)有问题。我不确定这里有什么问题。
这个作业是给我的计算机科学课的。我们应该修复一些语法错误(我确实眼睛不好,所以我可能没见过分号之类的东西)并编译它并运行,但它不会编译。
我为此使用了 JCreator 4.5。我还尝试在学校使用 DOS 提示符编译它。帮助!