标签: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