判断给定日期是一年中的第几天(C++)

代码

#include <iostream>
#include <vector>

using namespace std;

//是否是闰年
int isLeap(int year) {
    if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
        return 1;
    } else {
        return 0;
    }
}

//闰年和平年各月天数
int month[2][12] = {{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
                    {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},};

//字符串日期切分成 y年 m月 d日
void trans(string str, int &y, int &m, int &d) {
    str += "/";
    string temp;
    vector<string> vec_temp;
    for (int i = 0; str[i] != '\0'; ++i) {
        if (str[i] == '/') {
            vec_temp.push_back(temp);
            temp = "";
        } else {
            temp += str[i];
        }
    }
    y = stoi(vec_temp[0]);
    m = stoi(vec_temp[1]);
    d = stoi(vec_temp[2]);
}

//判断给定日期是一年中的哪一天
void whichDays(string str) {
    int y, m, d;
    trans(str, y, m, d);
    int total_days = d;
    y = isLeap(y);
    for (int i = 0; i < m - 1; ++i) {
        total_days += month[y][i];
    }
    cout << total_days << endl;
}

//骚操作入口
int main() {
    whichDays("2006/3/12");
    return 0;
}

结果

在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值