-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentInfo.java
More file actions
33 lines (27 loc) · 1.24 KB
/
StudentInfo.java
File metadata and controls
33 lines (27 loc) · 1.24 KB
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
26
27
28
29
30
31
32
33
/**
* Contains a method <code>void display()</code> that all the <code>main</code> methods
* call to display the student information. Fill the box with your personal
* information.
*
* @author Marcel Turcotte (turcotte@eecs.uottawa.ca)
*/
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("*****************************************************");
System.out.println("* *");
System.out.println("* ASSIGNMENT 4 *");
System.out.println("* *");
System.out.println("* TEAM: Dilanga Algama (8253677) *");
System.out.println("* Gabriel Fitzgerald-Biernath (7751747) *");
System.out.println("* *");
System.out.println("* COURSE CODE: ITI 1121 SECTION: C *");
System.out.println("* *");
System.out.println("*****************************************************");
System.out.println();
}
}