import java.io.*; //import student.*; //example of class that uses another class public class roster { static final int SIZE=3; //number of students public static void main(String args[]) throws IOException { student my_class[]=new student[SIZE]; //array of students System.out.println("Please enter information about " +SIZE+" students: "); for(int i=0; i