#include <iostream>
using namespace std;
int main(void)
{
int testScore;
cout << "Enter your test score: ";
cin >> testScore;
if (testScore >= 90 )
cout << "Your grade is an A" << endl;
else if (testScore >= 80 )
cout << "Your grade is a B" << endl;
else if (testScore >= 70 )
cout << "Your grade is a C" << endl;
else if (testScore >= 60 )
cout << "Your grade is a D" << endl;
else
cout << "Your grade is an F" << endl;
return 0;
}
|