欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

计算一段程序的执行时间

程序员文章站 2022-06-12 16:10:11
...
// 计算程序执行时间.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <time.h>
void do_something()
{
	for(int i=0;i<100000;i++)
		for(int j=0;j<10000;j++)
			;
}
int main(int arg,char ** argv)
{
	clock_t start=clock();
	do_something();
	clock_t end=clock();
	float time=(float)(end-start)/CLOCKS_PER_SEC;
	printf("%fs\n",time);
	system("pause");
	return 0;
}