/** * Declares and initializes an integer and String variable and outputs to the * console each variable. * *@author Anthony Larrain *@version 1 Summer 2000 */ class Variable1{ public static void main(String [] args ) { int numberOfStudents = 40; System.out.println(numberOfStudents); String hello = "HELLO CSC211 STUDENT"; System.out.println(hello); } }