1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#include <iostream>
#include <string>
using namespace std;
string name, military, sex;
int age, pushups;
int main()
{
cout << "What is your full name? ";
getline(cin, name);
cout << "How old are you? ";
cin >> age;
cout << "Were you ever in the military (yes/no)? ";
cin >> military;
cout << "How many pushups can you do in a row? ";
cin >> pushups;
cout << "Are you <m>ale or <f>emale? ";
cin >> sex;
if ((sex == "m") && ((age >= 18) && (age <= 30)))
cout << "Yes, " << name << ", you may apply." << endl;
else
cout << "Sorry, " << name << ", you are not eligible." << endl;
if ((sex == "f") && ((age >= 18) && (age <= 32)))
cout << "Yes, " << name << ", you may apply." << endl;
else
{
cout << "Sorry, " << name << ", you are not eligible." << endl;
}
if (((sex == "m") && ((age >= 18) && (age <= 35)) && ((military == "yes") || (pushups >= 50))))
cout << "Yes, " << name << ", you may apply." << endl;
else
{
cout << "Sorry, " << name << ", you are not eligible." << endl;
}
if (((sex == "f") && ((age >= 18) && (age <= 40)) && ((military == "yes") || (pushups >= 30))))
cout << "Yes, " << name << ", you may apply." << endl;
else
{
cout << "Sorry, " << name << ", you are not eligible." << endl;
}
}
|