#include <stdio.h>
#include <future>
using namespace std;
int main()
{
	double START, END;
	START = clock();

	//	[Your code here..]

	END = clock();

	char szTime[100];
	sprintf_s(szTime, 100, "Execute time : %lf - %lf = %lf \n",END, START, END - START);
	printf_s(szTime);

	system("PAUSE");
}
arrow
arrow
    文章標籤
    C++ times clock 執行時間
    全站熱搜
    創作者介紹
    創作者 Chris 的頭像
    Chris

    夢多了,就會是現實

    Chris 發表在 痞客邦 留言(0) 人氣()