/** * Class for creating a template for a simple Java program * * @author Pat Troy: troy AT uic DOT edu */ // Note the name of the class in the following line MUST // match the name of the file. This is stored in a file // named: Template.java public class Lect92a { public static void main (String[] args) { System.out.println("Begin Java Exection"); System.out.println(); // put your Java Program here int value = 35; System.out.println (value); System.out.println ("The number is: " + value); System.out.println(""); System.out.println("End Java Exection"); } } // end of Template class