c语言 用库函数计算两日期相差的天数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言 用库函数计算两日期相差的天数相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>

int  get_days(const char* from, const char* to);
time_t convert(int year,int month,int day);

int main()

    const char* from="2013-3-15";
const char* to="2015-8-14";
int days=get_days(from,to);

printf("From:%s\\nTo:%s\\n",from,to);
printf("%d\\n",days);

return 0;


time_t convert(int year,int month,int day)

struct tm info=0;
info.tm_year=year-1900;
info.tm_mon=month-1;
info.tm_mday=day;
return mktime(&info);


int  get_days(const char* from, const char* to)

int year,month,day,fromSecond,toSecond;
sscanf(from,"%d-%d-%d",&year,&month,&day);
fromSecond=(int)convert(year,month,day);
sscanf(to,"%d-%d-%d",&year,&month,&day);
toSecond=(int)convert(year,month,day);
return (toSecond-fromSecond)/24/3600;


From:2013-3-15
To:2015-8-14
882
Press any key to continue
   
 这才算是用了库函数了···

参考技术A 给你写了一个程序,应该能看懂的:

#include <stdio.h>
#include <time.h>
#include <memory.h>

int main(void)

time_t t1;
time_t t2;

struct tm OldTime;
struct tm NewTime;

memset(&OldTime,0x0,sizeof(tm));
OldTime.tm_year = 110;// 2010 年表示为 2010 - 1900 = 110
OldTime.tm_mon = 12;
OldTime.tm_mday = 6;

memset(&NewTime,0x0,sizeof(tm));
NewTime.tm_year = 111;// 2011 年表示为 2011 - 1900 = 111
NewTime.tm_mon = 12;
NewTime.tm_mday = 6;

t1 = mktime(&NewTime); //2011-12-6
t2 = mktime(&OldTime); //2010-12-6

printf("%d",(t1-t2)/(24*3600));

return 0;
本回答被提问者采纳
参考技术B

提供网上代码供参考,该代码引入 time.h 头文件:

#include <stdio.h>
#include <time.h>

int datediff(int y1,int m1,int d1,int y2,int m2,int d2)
struct tm ptr1;
ptr1.tm_sec=10;
ptr1.tm_min=10;
ptr1.tm_hour=10;
ptr1.tm_mday=d1;
ptr1.tm_mon=m1-1;
ptr1.tm_year=y1-1900;   
time_t st1=mktime(&ptr1);
struct tm ptr2;
ptr2.tm_sec=10;
ptr2.tm_min=10;
ptr2.tm_hour=10;
ptr2.tm_mday=d2;
ptr2.tm_mon=m2-1;
ptr2.tm_year=y2-1900;   
time_t st2=mktime(&ptr2);
return (int)((st2-st1)/3600/24);


int main (void)
int t=datediff(2015,1,9,2015,2,18);
printf("%d",t);
return 0;

参考技术C #include <stdio.h>
struct date

int year;
int month;
int day;
;
int main(void)

int isPrime(int year);
int dateDiff(struct date mindate,struct date maxdate);
struct date mindate,maxdate;
int days;

printf("please input the one date:");
scanf("%i-%i-%i",&mindate.year,&mindate.month,&mindate.day);
printf("please input other day:");
scanf("%i-%i-%i",&maxdate.year,&maxdate.month,&maxdate.day);

days=dateDiff(mindate,maxdate);
printf("the day is:%d\n",days);
return 0;


/************************************************************************/
/* 判断闰年函数(4年一润,100年不润,400年再润) */
/************************************************************************/
int isPrime(int year)

if ((year%4==0&&year%100!=0)||(year%400==0))

return 1;

else

return 0;




int dateDiff(struct date mindate,struct date maxdate)

int days=0, flag=1;
const int primeMonth[12]=31,29,31,30,31,30,31,31,30,31,30,31;
const int notPrimeMonth[12]=31,28,31,30,31,30,31,31,30,31,30,31;

/************************************************************************/
/* 交换两个日期函数,将小的日期给mindate,将大的日期给maxdate */
/************************************************************************/
struct date tmp;
if ((mindate.year>maxdate.year)|| (mindate.year==maxdate.year&&mindate.month>maxdate.month)||(mindate.year==maxdate.year&&mindate.month==maxdate.month&&mindate.day>maxdate.day))

tmp=mindate;
mindate=maxdate;
maxdate=tmp;


int maxmonth,minmonth;
/************************************************************************/
/* 主要思路:拿2002-8-8 2005-2-22来说 */
/* 将2004-8-8---2005-2-22----2005-7-8 */
/*一前一后刚好N年,算出2005-2-22到2005-7-8的天数,然后用总年*36(5|6)减掉) */
/* 2002-9-8 2005-11-22 */
/* 2002-9-8-----2005-9-8-----2005-11-22(这次是加上后面天数) */
/*如何判断是加还是减呢?年大而月小的,则是减,程序中用flag标示 */
/************************************************************************/
if (maxdate.month<mindate.month)

maxmonth=mindate.month;
minmonth=maxdate.month;
flag=-1;

else

maxmonth=maxdate.month;
minmonth=mindate.month;
flag=1;


/************************************************************************/
/* 从mindate.year开始累加到maxdate.year */
/************************************************************************/
for(int j=mindate.year;j<maxdate.year;++j)

if (isPrime(j)==1)

days+=366;

else
days+=365;


/************************************************************************/
/* 从minmonth累加到maxmonth,分闰年和平年 */
/************************************************************************/
int day;
if(isPrime(maxdate.year)==1)


for(int i=minmonth;i<maxmonth;i++)

day=primeMonth[i-1]*flag;
days=days+day;

days=days+maxdate.day-mindate.day;

else

for (int i=minmonth;i<maxmonth;i++)

day=notPrimeMonth[i-1]*flag;
days=days+day;

days=days+maxdate.day-mindate.day;

return days;
参考技术D 思路。
1.计算两个日期相隔的年数。
判断相隔年数里,出现了几个闰年,几个平年,然后计算跨年的天数。要小心,不要多算了一年哦。
2.计算不足一年,另外再相隔的月数。
注意,看是否其中有2月
3.不足一月,相隔的天数。
三者都换算成天数,相加!

以上是关于c语言 用库函数计算两日期相差的天数的主要内容,如果未能解决你的问题,请参考以下文章

SQL是计算两个日期相差多少天数的函数?

SQL 计算两个日期相差多少天数的函数

MySql计算两日期时间之间相差的天数,秒数,分钟数,周数,小时数

MySql计算两日期时间之间相差的天数,秒数,分钟数,周数,小时数

MySql计算两日期时间之间相差的天数,秒数,分钟数,周数,小时数

C语言,使用结构体读入两个在同一年的日期,判断日期是否合法,并计算两个日期之间相差的天数。结构体定义如下: