hey,
help me think of a good way to get after the logic of this program:
---------------------
Write a program that translates a number into the closest letter grade. For example, the number 2.8 (which might have been the average of several grades) would be converted to B-. Break ties in favor of the better grade; for example, 2.85 should be a B.
Use a class Grade with a method getLetterGrade().