题解 | #判断季节#
判断季节
https://www.nowcoder.com/practice/741a9b79fabe474cb153a49b4bff5828
#include <iostream> using namespace std; int main() { int month; cin >> month; if (month > 12 || month <= 0) { cout<<"不合法"<<endl; } switch (month) { case 12: case 1: case 2: cout<<"冬季"; break; case 3: case 4: case 5: cout<<"春季"; break; case 6: case 7: case 8: cout<<"夏季"; break; case 9: case 10: case 11: cout<<"秋季"; break; } return 0; }