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 86dbc38 commit 7ebb22eCopy full SHA for 7ebb22e
out/production/learning-java-2825378/Main.class
245 Bytes
src/Main.java
@@ -1,6 +1,16 @@
1
public class Main {
2
3
public static void main(String[] args) {
4
-
+ int studentAge = 15;
5
+ double studentGPA = 3.45;
6
+ char studentFirstInitial = 'K';
7
+ char studentLastInitial = 'H';
8
+ boolean hasPerfectAttendance = true;
9
+
10
+ System.out.println(studentAge);
11
+ System.out.println(studentGPA);
12
+ System.out.println(studentFirstInitial);
13
+ System.out.println(studentLastInitial);
14
+ System.out.println(hasPerfectAttendance);
15
}
16
0 commit comments