We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebb22e commit 3fee8feCopy full SHA for 3fee8fe
out/production/learning-java-2825378/Main.class
175 Bytes
src/Main.java
@@ -6,11 +6,15 @@ public static void main(String[] args) {
6
char studentFirstInitial = 'K';
7
char studentLastInitial = 'H';
8
boolean hasPerfectAttendance = true;
9
+ String studentFirstName = "Kayla";
10
+ String studentLastName = "Hammon";
11
12
System.out.println(studentAge);
13
System.out.println(studentGPA);
14
System.out.println(studentFirstInitial);
15
System.out.println(studentLastInitial);
16
System.out.println(hasPerfectAttendance);
17
+ System.out.println(studentFirstName);
18
+ System.out.println(studentLastName);
19
}
20
0 commit comments