close
#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 發表在 痞客邦 留言(0) 人氣()