// This class is the driver (client of Student) and main program // It makes a student object and prints out the reults import java.util.Scanner; public class MakeStudents { public static void main(String[]args) { int x; String s; // we'll use scanner ... System.out.println("enter first student's ID:"); x = sc.nextInt(); sc.nextLine(); // Now let's make a student with just an ID Student S1 = new Student(x); // Now enter info for a second student named S2 with an ID and a name System.out.println("enter second student's ID:"); ... System.out.println("enter second student's name:"); // now make a second student object ... // now print the results using accessor methods ... } }