當前位置:首頁 » 編程語言 » c語言用輸入方式計算時間差
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

c語言用輸入方式計算時間差

發布時間: 2023-07-23 03:17:23

c語言,時間差怎麼編程

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

void main()

{

unsigned char time1[] = {10, 8, 31, 9, 26 };

unsigned char time2[] = { 10, 8, 31, 9, 50 };

struct tm t1 = {0};

struct tm t2 = {0};

time_t _t1;

time_t _t2;

double diff;

t1.tm_year = time1[0] + 100;

t1.tm_mon = time1[1];

t1.tm_mday = time1[2];

t1.tm_hour = time1[3];

t1.tm_min = time1[4];

t2.tm_year = time2[0] + 100;

t2.tm_mon = time2[1];

t2.tm_mday = time2[2];

t2.tm_hour = time2[3];

t2.tm_min = time2[4];

_t1 = _mkgmtime( &t1 );

_t2 = _mkgmtime( &t2 );

diff = difftime(_t2, _t1 );

printf( "相差 %.0f 分鍾 ", diff / 60 );

}

(1)c語言用輸入方式計算時間差擴展閱讀:

C語言中有兩個相關的函數用來計算時間差,分別是:

time_t time( time_t *t) 與 clock_t clock(void)

頭文件: time.h

計算的時間單位分別為: s , ms

time_t 和 clock_t 是函數庫time.h 中定義的用來保存時間的數據結構

返回值:

1、time : 返回從公元1970年1月1號的UTC時間從0時0分0秒算起到現在所經過的秒滾激數。如果參數 t 非空指針的話,返回的時間會保存在 t 所指向的內存。

2、clock:返回從「開啟這個程序進程」到「程序中調用clock()函數」時之間的CPU時鍾計時單元(clock tick)數。 1單元 = 1 ms。

所以我們可以根據具體情況需求,判斷採用哪一個函數。

具體用法如下例子:

#include <time.h>

#include <stdio.h>

#include <stdlib.h>

int main()

{

time_t c_start, t_start, c_end, t_end;

c_start = clock(); //!< 單位為ms

t_start = time(NULL); //!< 單位為s

system("pause");

c_end = clock();

t_end = time(NULL);

//!<difftime(time_t, time_t)返回兩個time_t變數間的時大纖襪間間隔,即時間差

printf("The pause used %f ms by clock() ",difftime(c_end,c_start));

printf("The pause used %f s by time() ",difftime(t_end,t_start));

system("pause");

return 0;

}

因此,要計算某一函數塊的佔用時間時,只需要在豎侍執行該函數塊之前和執行完該函數塊之後調用同一個時間計算函數。再調用函數difftime()計算兩者的差,即可得到耗費時間。

❷ C語言怎麼把時間1和時間2換成分鍾,再計算時間差

unsigned int time1, time2, h, m;
time1 = h1 * 60 + m1;
time2 = h2 * 60 + m2;
time1 = time1 > time2 ? time1 - time2 : time2 - time1;
h = time1 / 60;

m = time1 % 60;
printf("時間差為%u小時%u分鍾\r\n", h, m);

❸ c語言如何計算時間差

boolcomputer(file_date_tt1,file_date_tt2)

{


intmin=t1.i_dd<t2.i_dd?t1.i_dd:t2.i_dd;


inttime1=(t1.i_dd-min)*24+t1.i_hh;


inttime2=(t2.i_dd-min)*24+t2.i_hh;


if(time1>time2)


{

if(time1-time2>12)


{


printf("時間超過12個小時! ");


returntrue;


}


printf("時間不超過12個小時! ");


returnfalse;


}

else


{


if(time2-time1>12)


{


printf("時間超過12個小時! ");


returntrue;


}


printf("時間不超過12個小時! ");


returnfalse;

}

}

❹ 如何用c語言計算兩個時間的時間差

#include
<time.h>
clock_t
start;
clock_t
end;
start
=
clock();
...//需要計算時間的代碼片斷
end
=
clock();
printf("%ld",
(end
-
start)/clk_tck/60);

❺ C語言中計算2個時間的差值的函數

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

time_t_mktime(char*slTime)/**yyyy-mm-dd**/
{
structtmtm_t;
intyear;
intmon;
intday;

sscanf(slTime,"%4d-%2d-%2d",&year,&mon,&day);

tm_t.tm_year=year-1900;
tm_t.tm_mon=mon-1;
tm_t.tm_mday=day;
tm_t.tm_hour=12;
tm_t.tm_min=00;
tm_t.tm_sec=01;
tm_t.tm_wday=0;
tm_t.tm_yday=0;
tm_t.tm_isdst=0;

returnmktime(&tm_t);
}

intdaydiff(char*date1,char*date2)/**yyyy-mm-dd**/
{
time_tt1=_mktime(date1);
time_tt2=_mktime(date2);
time_tdiff=abs(t2-t1);
return(int)(diff/(24*60*60));
}
intmain()
{
chardate1[12],date2[12];
printf("inputdate1:");
scanf("%s",date1);
fflush(stdin);
printf("inputdate2:");
scanf("%s",date2);
fflush(stdin);
printf("%s-%sis%ddays ",date1,date2,daydiff(date1,date2));
}

❻ 【急求】c語言 求兩個時間的差值

/*可以處理空格!!!*/

#include<stdio.h>

#include<string.h>

structTTime

{

inth,m,s;

longGetSec(){return3600L*h+60*m+s;}

voidStrToTime(char_str[])

{

inti,j,len=strlen(_str);

/*去空格*/

for(i=0;i<len;++i)

if(_str[i]=='')

{

for(j=i;j<len-1;++j)

_str[j]=_str[j+1];

--len;

i=-1;

continue;

}

/*讀小時*/

j=0;

for(i=0;i<len;++i)

if(_str[i]==':')

break;

else

j=j*10+_str[i]-'0';

h=j;

/*讀分鍾*/

j=0;

for(++i;i<len;++i)

if(_str[i]==':')

break;

else

j=j*10+_str[i]-'0';

m=j;

/*讀秒*/

j=0;

for(++i;i<len;++i)

j=j*10+_str[i]-'0';

s=j;

}

voidToPlan(longt)

{

inthh,mm,ss;

hh=t/3600;

t%=3600;

mm=t/60;

t%=60;

ss=t;

printf("%2.2d:%2.2d:%2.2d ",hh,mm,ss);

}

}Ta,Tb,Tc;

voidmain()

{

chara[105],b[105];

gets(a);

gets(b);

Ta.StrToTime(a);

Tb.StrToTime(b);

printf("sec:%ld,time:",Tb.GetSec()-Ta.GetSec());

Tc.ToPlan(Tb.GetSec()-Ta.GetSec());

}