practice program C++
So for practice I decided to look for some practical ways to test the skills I have learned recently. The program I picked instructs to write a program that allows the user to enter the grade scored in a programming class (0-100). If the user scored a 100 then notify the user that they got a perfect score. Modify the program so that if the user scored a 90-100 it informs the user that they scored an A Modify the program so that it will notify the user of their letter grade 0-59 F 60-69 D 70-79 C 80-89 B 90-100 A The entire thing should be able to be written using basic input/output logic (if statements, switch statements). my switch statements don't seem to want to be wanting to work. No matter what grade I input it reads " You scored a 90 A" so even if I input 91 or even 95 in the input line I get " You scored a 90 A".