CJCoding With Joseph

Grade Letter Method

Write the static method Grade so it returns a letter grade for a numeric score: 90 or above is "A", 80-89 is "B", 70-79 is "C", 60-69 is "D", and anything below 60 is "F". The tester calls it and prints the result. Do NOT write a Main method.

For Grade(95) the program prints exactly:
A

Expected Output:

A
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.