Skip to content

Commit 7ebb22e

Browse files
author
Kathryn Hodge
committed
Completed 02_02
1 parent 86dbc38 commit 7ebb22e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
245 Bytes
Binary file not shown.

src/Main.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
public class Main {
22

33
public static void main(String[] args) {
4-
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);
515
}
616
}

0 commit comments

Comments
 (0)