#include <iostream>
usingnamespace std;
int main()
{
int score;
cout<<" *** Grading! ***"<<endl;
cout<<" Please enter score: ";
cin>>score;
if (score==100){
cout<<"you scored a perfect score! good job. ("<<score<<")"<<endl;
}
if (score==91 || score==92 || score==93 || score==94 || score==95 || score==96 || score==97 || score==98 || score==99){
cout<<"You got an A!";
}
else {
cout<<score<<", not bad!";
}
cin.get();
return 0;
}
right... so is there any way to signal "90 TO 99"...instead of writing it all out. i tried 90-99 but that clearly means "90 subtracted by 99" so it must be a written code i think