17 lines
576 B
Java
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("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
|
|
}
|
|
} |