//DISPLAY 2.12 A while Loop #include using namespace std; int main( ) { int countDown; cout << "How many greetings do you want? "; cin >> countDown; while (countDown > 0) { cout << "Hello "; countDown = countDown - 1; } cout << endl; cout << "That's all!\n"; return 0; }