//nest0.cpp, nesting a for in an if #include using namespace std; int main() { int age; cout << "How old are you? "; cin >> age; if (age > 62) { cout << "You are eligible for a discount."<< endl; for (int i=1; i <=5; i++) { cout << "Yippee!\n"; } } return 0; }