This commit is contained in:
2024-10-08 13:46:16 +03:00
parent 232e2bf47f
commit b09c332067
7 changed files with 92 additions and 0 deletions

17
labs/lab1/Problems.java Normal file
View File

@ -0,0 +1,17 @@
// ********************************************
// 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("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
}
}