我正在网上社区大学学习java课程,我被困在这本书的一个例子中。我不知道发生了什么,但是当我运行代码时它说成功但不显示消息。到目前为止,它显示消息没有问题,但现在它已停止,我正在使用netbeans为我的IDE。感谢您的帮助。
public class ParadiseInfo
{
public static void main(String[] args)
{
displayInfo();
}
public static void displayInfo()
{
System.out.println("Paradise Day Spa wants to pamper you. ");
System.out.println("We will make you look good. ");
}
}