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

Popular posts from this blog

153: Write a program to read an amount (integer value) and break the amount into smallest possible number of bank notes. Note: The possible banknotes are 500, 100, 50, 20, 10, 5, 2, and 1

206: Write a program to create a class named "Circle" which has the property "radius". Define functions to calculate the area and circumference of the circle.

221: // In Task 2, we discussed multilevel inheritance with parameterized constructors for Student, UndergraduateStudent, and GraduateStudent classes in a university management system. Can you explain the advantages of using multilevel inheritance with specific details about the functions and data members in these classes? How were the parameterized constructors (e.g., setting student name, age, and ID) used to ensure that each class in the hierarchy correctly initializes its properties, such as creating an UndergraduateStudent named "John," aged 20, with a student ID of 12345