#include #include using namespace std; int main(int argc, char *argv[]) { //Input the loop count int loopCount; cout << "Enter the amount of loops you would like to perform: "; cin >> loopCount; //Now loop that many times while (loopCount > 0) { loopCount = loopCount - 1; cout << "Only " << loopCount << " loops remaining!\n"; } //Wait until user is readt to quit. system("PAUSE"); return EXIT_SUCCESS; }