码迷,mamicode.com
首页 > 其他好文 > 详细

推断一年中某一天是这一年的第几天的函数接口

时间:2017-08-16 17:16:11      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:roc   return   track   hid   nes   data   define   var   i++   

#define ret_ok  0
#define ret_err 1

int a[] = {31, 28, 31, 30, 31, 30, 31,31, 30, 31, 30, 31};

int judge_day(int Year, int Month, int Day, int *result_day)
{
    int Total = 0;
    int i = 0;

    if( (((Year%400) == 0) || ((Year%4) == 0)) && ((Year %100) != 0))//假设是闰年,那么2月份为29天
    {
        a[1] = 29;
    }
    for(i=0;i<Month-1;i++)
    {
        Total += a[i];
    }
    Total += Day;
    *result_day = Total;

    return ret_ok;
}

推断一年中某一天是这一年的第几天的函数接口

标签:roc   return   track   hid   nes   data   define   var   i++   

原文地址:http://www.cnblogs.com/claireyuancy/p/7373430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!