Skip to content

Commit 8bcccaa

Browse files
author
Kathryn Hodge
committed
Starting 02_04
1 parent 3fee8fe commit 8bcccaa

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Main.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ public class Main {
33
public static void main(String[] args) {
44
int studentAge = 15;
55
double studentGPA = 3.45;
6-
char studentFirstInitial = 'K';
7-
char studentLastInitial = 'H';
86
boolean hasPerfectAttendance = true;
7+
98
String studentFirstName = "Kayla";
109
String studentLastName = "Hammon";
10+
char studentFirstInitial = 'K';
11+
char studentLastInitial = 'H';
1112

1213
System.out.println(studentAge);
1314
System.out.println(studentGPA);
14-
System.out.println(studentFirstInitial);
15-
System.out.println(studentLastInitial);
1615
System.out.println(hasPerfectAttendance);
16+
1717
System.out.println(studentFirstName);
1818
System.out.println(studentLastName);
19+
System.out.println(studentFirstInitial);
20+
System.out.println(studentLastInitial);
1921
}
2022
}

0 commit comments

Comments
 (0)