#include "iostream"
using namespace std;
//alidoran
int main()
{
int age;
cout << "please inpute your age\t";
cin >> age;
if (age < 18) cout << "you are child"<<endl;
if (age >= 18 && age < 65) cout << "you are adult"<<endl;
if (age >= 65) cout << "you are a cenior citizen"<<endl;
system("pause");
return 0;
}
- ۹۶/۱۱/۱۷