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 8a29291 commit f401116Copy full SHA for f401116
src/org/launchcode/java/demos/lsn4school/Student.java
@@ -28,10 +28,10 @@ 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
- }
+ // TODO: Uncomment and complete the getGradeLevel method here:
+// public String getGradeLevel() {
+// // Determine the grade level of the student based on numberOfCredits
+// }
35
36
// TODO: Complete the addGrade method.
37
public void addGrade(int courseCredits, double grade) {
0 commit comments