Search:

Type: Posts; User: GReaper

Search: Search took 0.02 seconds.

  1. Then: } while (input >= 1 && input

    Then:

    } while (input >= 1 && input <= 4);
  2. It's your loop condition. Better make it: }...

    It's your loop condition. Better make it:

    } while (input != 4);

    EDIT: And get a "cin.ignore();" before "cin.get();" if you want the program to wait for enter. ( "cin >> input;" has left the...
Results 1 to 2 of 2