Question: public String getLetterGrade() //-----------Start below here. To do: approximate lines of code = 26 // return the value corresponding to the numeric grade stored in


public String getLetterGrade() //-----------Start below here. To do: approximate lines of code = 26 // return the value corresponding to the numeric grade stored in instance variable grade //Use the constants defined above // ----- -------- End here. Please do not remove this comment. Reminder: no changes outside the todo regions. public class courseGrade Tester public static void main(String[] args) CourseGrade gradeInCourse = new CourseGrade(2.8) ; System.out.println(gradeInCourse + " " + grade InCourse.getLetterGrade()); System.out.println("Expected: 2.8 B-"); gradeInCourse = new CourseGrade(2.85); System.out.println(gradeInCourse + " " + grade InCourse.getLetterGrade()); System.out.println("Expected: 2.85 B"); // Add a little more than .05 because of rounding error. //otherwise what looks like 2.85 is less than 2.85 for (double x = 0 ; x
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
