#include #include using namespace std ; int main() { int x1 ; cout << "Enter an age:" ; cin >> x1 ; x1 = x1 / 10 ; switch( x1 ) { case 0: case 1: cout << "Teenager" << endl ; break ; case 2: cout << "Career" << endl ; break ; case 3: cout << "Family and Kids" << endl ; break ; case 4: cout << "Mid life crisis" << endl ; break ; default: cout << "Retirement Plans" << endl ; } return 0; }