|
|
This program tells you a letter grade based on your input. Enter a score you got (out of 100) to be turned into a letter grade. Enter the score: 80 That's an F! Press the enter key to do this again. Enter the score: 78 That's an F! Press the enter key to do this again. |
if (0 <= score <= 59)
if((0 <= score) <= 59)
if(code >= 0 && code <= 59)