#include <time.h>
void int()
{
clock_t start, end, diff_time;
start = clock();//開始時間
.
. (your program)
.
end = clock();//結束時間
diff_time =(double) (end-start)/(double)CLOCKS_PER_SEC;//秒數
printf("\n執行時間 = %d s \t %d ms\n\n",diff_time,(end-start));
}
---------------------分格線----------------------------
在程式的頭尾加上這幾行..就可以了...
但這執行的時間會依電腦的好壞所影響...
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.169.48.73