This is just a little bit of the code but I cant do anything till i get this loop to exit. Can someone please help me and tell me why this loop wont exit.
CODE
#include <cstdlib>
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double arrystudent_grades[4][5]={{5,8,9,8,6},{2,5,10,5,3},{8,8,8,8,9},{10,9,8,7,6}};
int grade;
int student;
int num_students=4;
int num_grades=5;
char menu_response;
int student_id;
char studentName[4][35] = {"Amy","Ben","Cathy","Doug"};
do{
cout<<"\t***************************************\n";
cout<<"\t** **\n";
cout<<"\t** Success Tutoring Center **\n";
cout<<"\t** **\n";
cout<<"\t***************************************\n";
cout<<"\n\n";
cout<<"A-Change a single grade\n";
cout<<"B-Output progress report\n";
cout<<"C-Calculate fifth grade and output report\n";
cout<<"\n";
cout<<"\nPlease make a choice: ";
cin>>menu_response;
}
while ((menu_response!='a') || (menu_response!='b') || (menu_response!='c'));
/*to see grades*/
for(student=0;student<num_students;++student)
{
cout<<"\nGrades for students"<<student+1<<":\t";
for(grade=0;grade<num_grades;++grade)
cout<<arrystudent_grades[student][grade]<<"\t";
cout<<"\n";
}
system("PAUSE");
return 0;
}