java/labs/lab1/Problems.java
2024-10-08 13:46:16 +03:00

17 lines
576 B
Java

// ********************************************
// 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 used to have lots of problems,");
System.out.println("but if it prints this, you fixed them all.");
System.out.println(" *** Hurray! *** ");
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
}
}