CJCoding With Joseph

Letter Grade Function

Write a function string letterGrade(int score) that returns the letter grade for a score: 90+ is "A", 80-89 is "B", 70-79 is "C", 60-69 is "D", below 60 is "F".

For letterGrade(95) the program prints A.

Expected Output:

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

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.