#include using namespace std; int main() { //step 0: int age; //ask user their age cout << "How old are you?" << endl; //read user's response into a varible cin >> age; //respond to the user cout << "Glad to see you are " << age << " years old." << endl; //Determine if user can vote or not. if ( age >= 18 ) { cout << "Congratulations! YOu can vote and be drafted!" << endl; } else { cout << "You're just a wimpy kid!" << endl; } //Determine if you get a free lunch or not: under 10, free! Or, over 65 free! if (age < 10 || age > 65) //|| means "OR" { cout << "Congratulations, you are elible for a free lunch!" << endl; } //Now determine if you are fit to run a marathon if (age > 16 && age < 90) //&& mean "AND" { cout << "Wow, you're an accceptable age for running a marathon!" << endl; } else { cout << "Whoa whoa whoa.... No marathons for you, you are not an okay age for such things!" << endl; } //Are you about to have a quinciera? if (age == 14 || age == 13) // if( age <= 14 && age >=13 ) { cout << "I see that you are about to have a quincinera! Fun" << endl; } return 0; }