Skip to content

Commit 67ddaae

Browse files
Merge pull request #1 from LaunchCodeEducation/lsn3-exercises
Adding starter code for Lesson 3
2 parents 3342e32 + e6dbcd5 commit 67ddaae

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package org.launchcode.java.demos.school;
2+
3+
public class SchoolPractice {
4+
public static void main(String[] args) {
5+
// Instantiate your Student class for part 2 here!
6+
}
7+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.launchcode.java.demos.school;
2+
3+
// Start working here with your Student class.
4+
// To instantiate the Student class, add your code to the main in the file, SchoolPractice.
5+
6+
public class Student {
7+
8+
private String name;
9+
private int studentId;
10+
private int numberOfCredits = 0;
11+
private double gpa = 0.0;
12+
13+
}

0 commit comments

Comments
 (0)