-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudentInfo.java
25 lines (22 loc) · 926 Bytes
/
StudentInfo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* Contains a method <code>void display()</code> that all the <code>main</code>
* methods call to show the student information. Fill the box with your personal
* information.
*
*
*/
public class StudentInfo {
/**
* Displays the student information: student name, id, section, etc for each
* member of the team.
*/
public static void display() {
System.out.println("************************************************************");
System.out.println("* Neil Valin 300236063 A00 *");
System.out.println("* Vishal Bhat 300247928 A00 *");
System.out.println("* *");
System.out.println("* *");
System.out.println("************************************************************");
System.out.println();
}
}