Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab3_97

Snippet info

Language

Cpp

Visibility

public

Author

matho.camara

Created

2018-10-23T17:33:25Z

Updated

2018-10-24T09:16:43Z

#include <iostream>
#include <stdlib.h>
using namespace std;

int main() {
    int age;
    //char Categories[4]={"preschool", "student", "employee", "retiree"};
    
    cout<<"Input your age or birthdate:"<<endl;
    cin>>age;
    
    if(age>1000)
          age=2018-age;
    if(age>0 && age<=7)    
    cout<<"preSchool"<<endl;
    else if(age>=8 && age<=17)
    cout<<"Student"<<endl;
    else if(age>=18 && age<=55)
    cout<<"Employee"<<endl;
    else if(age>=56 && age<=100)
    cout<<"Retiree"<<endl;
    
    return 0;
}
INFO