//Selecting 1 alternative with 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; system("pause"); return 0; }