I just started learning C++ so i’m sure there is something obvious about this that i’m missing. I would love it if somebody could enlighten me. thank you!
Im trying
Please change your Or conditions with And condition.
#include
using namespace std;
int main()
{
char answer{' '};
std::cin>>answer;
while (answer != 'n' && answer != 'N' && answer != 'Y' && answer != 'y')
{
std::cout<<"Error: Please press 'Y' for yes and 'N' for no, followed by 'ENTER'. \n";
std::cin>>answer;
}
return 0;
}