import java.util.*; public class StudentStats { public static void main(String[] args) { Student jane = new Student(); Student apu = new Student(); // set up Jane's information jane.setName("Jane Smith"); jane.setClassYear(1); jane.setAge(18); jane.setMajor("Computer Science"); jane.printInfo(); // set up Apu's information apu.setName("Apu Nahasapeemapetilon"); apu.setClassYear(2); apu.setAge(19); apu.setMajor("Physics"); apu.printInfo(); // *** AFTER YOU ADD THE increaseYear METHOD TO // Student.java, UNCOMMENT THE LINES BELOW TO // TEST IT // // make Jane a sophomore // jane.increaseYear(1); // // // make Apu a senior // apu.increaseYear(2); // // jane.printInfo(); // apu.printInfo(); } }