题解 | #判断季节#

判断季节

https://www.nowcoder.com/practice/741a9b79fabe474cb153a49b4bff5828

#include <iostream>
using namespace std;
string calculateSeason(int month) 
{
    if (month >= 3 && month <= 5) {
        return "春季";
    } else if (month >= 6 && month <= 8) {
        return "夏季";
    } else if (month >= 9 && month <= 11) {
        return "秋季";
    } else if (month == 12 || month == 1 || month == 2) {
        return "冬季";
    } else {
        return "不合法";
    }
}

int main() {
    int month;
    cin >> month;
    string season = calculateSeason(month);//调用函数来求
    cout << season << endl;
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 11:29
已编辑
斯卡蒂味的鱼汤:知道你不会来数马,就不捞你😂最近数马疯狂扩招,招聘要求挺低的,你能力肯定够,应该就是因为太强了,知道你不会来才不捞你
投递腾讯云智研发等公司7个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务