/* Introduction a l'informatique II (ITI 1521) * Introduction to Computing II (ITI 1121) */ /** * * @author Marcel Turcotte */ 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(); } }