Practice Problem 2: Favorite Food

Objective: To learn how to write, compile, execute, and turn in a Java program

I showed you the following program in class:
/* Craig Persiko
   Main.java

   Simple Hello World program
*/

class Main
{
  public static void main(String[] args)
  {
    System.out.println("Hello World!");   //Display the string.
  }
}

Here is your assignment:

Return to main CS 111A page