8
Age
- #include <iostream>
- #include <cstdlib>
- int main() {
- using std::cin;
- using std::cout;
- using std::endl;
- int age;
- cout << "Enter your age: ";
- cin >> age;
- cout << "You are ";
- if ( age < 18 )
- cout << "a child";
- else if ( age < 65 )
- cout << "an adult";
- else
- cout << "a senior";
- cout << "." << endl;
- exit( 0 );
- }
Comments