Skip to content

Commit 3fee8fe

Browse files
author
Kathryn Hodge
committed
Completed 02_03
1 parent 7ebb22e commit 3fee8fe

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
175 Bytes
Binary file not shown.

src/Main.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ public static void main(String[] args) {
66
char studentFirstInitial = 'K';
77
char studentLastInitial = 'H';
88
boolean hasPerfectAttendance = true;
9+
String studentFirstName = "Kayla";
10+
String studentLastName = "Hammon";
911

1012
System.out.println(studentAge);
1113
System.out.println(studentGPA);
1214
System.out.println(studentFirstInitial);
1315
System.out.println(studentLastInitial);
1416
System.out.println(hasPerfectAttendance);
17+
System.out.println(studentFirstName);
18+
System.out.println(studentLastName);
1519
}
1620
}

0 commit comments

Comments
 (0)