File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments