String input validation with while

Jun 9, 2013 at 12:16pm
How to use while statement for bad input validation? For example user must input Yes or No, and if its correct, while statement should not be executed. If input is bad, while statement should show user error message. My program didnt work, what im doing wrong?

1
2
3
4
5
6
7
8
9
10
11
  string value;
    cout << "input Yes or No: ";
    cin >> value;
    while (value != "Yes" || value!= "No")
    {
        cout << "Error! You must input Yes or No.\n";
        cout << "Input Yes or No: ";
        cin >> value;
    }

    return 0;
Jun 9, 2013 at 12:23pm
while (value != "Yes" && value!= "No")
Topic archived. No new replies allowed.