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.
2 parents fe0f44d + f401116 commit 44ff252Copy full SHA for 44ff252
src/org/launchcode/java/demos/lsn4school/Student.java
@@ -28,12 +28,11 @@ public String studentInfo() {
28
return (this.name + " has a GPA of: " + this.gpa);
29
}
30
31
- // TODO: Complete the getGradeLevel method here:
32
- public String getGradeLevel() {
33
- // Determine the grade level of the student based on numberOfCredits
34
- // replace this return statement
35
- return "";
36
- }
+
+ // TODO: Uncomment and complete the getGradeLevel method here:
+ // public String getGradeLevel() {
+ // // Determine the grade level of the student based on numberOfCredits
+ // }
37
38
// TODO: Complete the addGrade method.
39
public void addGrade(int courseCredits, double grade) {
0 commit comments