//Selecting 2 alternatives 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; else cout << "No discount." << endl; system("pause"); return 0; }