/** 
 * ITI 1121. Introduction to Computing II (Winter 2010). Laboratory 2. <br/>
 * ITI 1521. Introduction à l'informatique II (Hiver 2010). Laboratory 2.
 *
 * @author Marcel Turcotte, uOttawa (turcotte@site.uottawa.ca)
 */

public class StudentInfo {

    /** Displays the student information: student name, id, section,
     *  etc.  You must fill this information inside the box.
     */

   public static void display() {

        System.out.println( "************************************************************" );
        System.out.println( "*                                                          *" );
        System.out.println( "*                                                          *" );
        System.out.println( "*                                                          *" );
        System.out.println( "*                                                          *" );
        System.out.println( "************************************************************" );
        System.out.println();

    }

}
