#include #include using namespace std; int main() { char resp; cout << "The population of Dutchey of Fenwick is " << endl; cout << setw(10) << "A .. 100" << endl; cout << setw(10) << "B .. 1,000" << endl; cout << setw(10) << "C .. 10,000" << endl; cout << setw(10) << "D .. 1,000,000" << endl; cout << setw(10) << "E .. 10,000,000" << endl; cout << "Enter a choice : "; cin >> resp; cout << "You entered " << resp<< endl; if (resp == 'A') { cout << "That is a small country" << endl; } else if (resp == 'B') { cout << "Correct " << endl; } else if (resp == 'C') { cout << "That is just a bit too large" << endl; } else if (resp == 'D') { cout << "Really way too big " << endl; } else if (resp == 'E') { cout << "We are not talking about China here " << endl; } else { cout << " Learn to type " << endl; } }