- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int age;
-
- cout<<"請輸入您的年齡: ";
- cin>>age;
-
- if(age<12)
- {
- cout<<"您正處於歡樂童年"<<endl;
- }
- else if(age<30)
- {
- cout<<"您正處於花樣年華"<<endl;
- }
- else if(age<50)
- {
- cout<<"您正處於壯年時期"<<endl;
- }
- else if(age<65)
- {
- cout<<"您正處於更年期"<<endl;
- }
- else if(age<100)
- {
- cout<<"您是樂活銀髮"<<endl;
- }
- else if(age>100)
- {
- cout<<"您是一位人瑞啊!!!"<<endl;
- }
- system("pause");
- return 0;
- }
-
-
-
複製代碼 |