#include <iostream>
using namespace std;
int main()
{
int score;
char grade;
cout << "Enter your score:" << endl;
cin >> score;
if (score >= 90)
grade = 'a';
if (score >= 80)
grade = 'b';
if (score >= 70)
grade = 'c';
if (score >= 60)
grade = 'd';
else
grade = 'f';
cout << grade << endl;
switch (grade) {
case 'a':
cout << "Good job" << endl;
break;
case 'c':
cout << "Fair job" << endl;
break;
case 'f':
cout << "Failure" << endl;
break;
default:
cout << "invalid" << endl;
}
cin.get();
return 0;
}
why is it giving me my default switch case when i enter 95 when i should be getting case a
switchand print both in your firstif(after you fix it of course). Over-complication is our worst curse, fight against it! – Blindy Sep 28 '11 at 19:20case 'd':is missing did you notice which grade was being output? – AJG85 Sep 28 '11 at 19:21