C 中記錄程式執行時間

2021-10-08 07:29:09 字數 1055 閱讀 6601

關鍵語句:

#include

clock_t starttime, endtime;

starttime =

clock()

;//計時開始

endtime =

clock()

;//計時結束

cout <<

"the run time is:"

<<

(double

)(endtime - starttime)

/ clocks_per_sec <<

"s"<< endl;

完整程式示例:

#include

#include

using

namespace std;

void

printc

(int n)

//用迴圈的方式輸出1-n的所有正整數

void

printr

(int n)

//用遞迴的方式輸出1-n的所有正整數;}

intmain()

關鍵語句:

#include

cout <<

"the run time is:"

<<

(double

)clock()

/clocks_per_sec<<

"s"<< endl;

完整程式示例:

#include

#include

using

namespace std;

intmain()

cout <<

"the run time is:"

<<

(double

)clock()

/clocks_per_sec<<

"s"<< endl;

system

("pause");

return0;

}

C 記錄執行時間

包含標頭檔案 ctime clock t start time,end time start time clock for double i 0 i 1000000000 i 放置需要測試時間的 end time clock cout double end time start time clock...

c 中記錄程式執行時間的函式

在c 的庫函式中,我們可以使用clock 來計算程式的執行時間,主要使用一下三個函式型別及函式 1 clock t 資料型別,其實,當你開啟time.h就知道了,就是個long型,用來記錄一段時間內的clocks數,即cpu的執行單元時間 2 clock 返回型別clock t,返回的是從程式開始,...

python記錄程式執行時間

方法1 import datetime starttime datetime.datetime.now long running endtime datetime.datetime.now print endtime starttime seconds 方法 2 start time.time ru...