本帖最後由 李泳霖 於 2024-6-15 16:12 編輯
試撰寫一程式,可輸入月份,然後判斷其所屬的季節( 3~5 月為春季,6~8 月為夏季, 9~11 月為秋季, 12~2 月為冬季)。
輸入說明:
輸入月份。
輸出說明:
輸出該月份的季節, 3~5 月為春季(Spring), 6~8 月為夏季(Summer), 9~11 月為秋季(Autumn), 12~2 月為冬季(Winter)。
- #include<iostream>
- using namespace std;
- int main()
- {
- re:
- int a;
- cout<<"請輸入月份:";
- cin>>a;
- if (a>=3 and a<=5)
- cout<<"春天"<<endl;
- else if (a>=6 and a<=8)
- cout<<"夏天"<<endl;
- else if (a>=9 and a<=11)
- cout<<"秋天"<<endl;
- else if (a==12 or (a>=1 && a<=2))
- cout<<"冬天"<<endl;
- else
- cout<<"輸入錯誤"<<endl;
- goto re;
- return 0;
- }
複製代碼 |