프로그래밍/C++2013. 4. 16. 15:07

time.h 사용


Programs.cpp


#include <iostream>
#include <time.h>

using namespace std;

int main()
{
	clock_t begin, end;
	begin = clock();		// 시간설정

	/************************************************************************/
	/*								측정 코드								*/
	/************************************************************************/


	end = clock();			// 시간설정
	cout<<"수행시간 : "<<((end-begin)/CLOCKS_PER_SEC)<<endl;

	return 0;
}


'프로그래밍 > C++' 카테고리의 다른 글

나열형 상수(enumerated constant)  (0) 2011.08.19
특수 출력 문자(이스케이프 문자)  (0) 2011.08.19
예약어 typedef  (0) 2011.08.19
변수의 크기 알기 : sizeof() 연산자  (0) 2011.08.18
C++ 프로그램 개발의 단계  (0) 2011.08.18
Posted by 건깡