#include #include using namespace std; int main() { int inches {0}; cout << "how tall are you in inches?"; cin >> inches; if (!cin) { cerr << "sorry that wasn't a whole number.\n"; return EXIT_FAILURE; } if (inches < 12 || inches > 99) { cerr << "sorry that is not a possible height.\n"; return EXIT_FAILURE; } }