20: Ask user to enter age, sex ( M or F ), marital status ( Y or N ) and then using following rules print their place of service. If employee is female, then she will work only in urban areas. If employee is a male and age is in between 20 to 40 then he may work in anywhere. If employee is male and age is in between 40 to 60 then he will work in urban areas only. And any other input of age should print "ERROR".
// Ask user to enter age, sex ( M or F ), marital status ( Y or N ) and then using following rules print their place of service.
// if employee is female, then she will work only in urban areas.
// if employee is a male and age is in between 20 to 40 then he may work in anywhere
// if employee is male and age is in between 40 t0 60 then he will work in urban areas only.
// And any other input of age should print "ERROR".
#include <iostream>
using namespace std;
int main(){
int age;
char sex, marriage;
cout << "Enter your age: ";
cin >> age;
if(age >= 20 && age <=60){
cout << "Enter your sex 'm' or 'f': ";
cin >> sex;
if(sex == 'm' || sex == 'f'){
cout << "Enter your martial status 'y' or 'n': ";
cin >> marriage;
if(marriage == 'y'|| marriage == 'n'){}
else {cout << "Error, invalid choice";
return 0;}
}
else {cout << "Error, 'm' or 'f'";
return 0;}
}
else {cout << "Error, age limit 20-60\n";
return 0;}
if(sex == 'f'){
cout << "You can work only in urban areas \n";
}
else if(sex=='m' && age>=20 && age<=40){
cout << "You can work anywhere \n";
}
else if(sex=='m' && age>40 && age<=60){
cout << "You can work only in urban areas \n";
}
return 0;
}
Comments
Post a Comment