so, to be honest, I'm a student at drexel. I have a comp sci problem. My program works fine except for:
if (stuAns[i]!="A" || stuAns[i] !="B")
{
i--;
cout<< "Your answer must be capital A or capital
B"<<endl;
}
this is embedded in a for loop. Also, it works if I don't use the ||. Do I have to overload that? I really really really really don't want to. But I can.