c语言 如何通过使用windows系统调用来计算一段程序的运行时间?
2个回答
展开全部
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
int main( void )
{
clock_t start = clock();
//此处写你的代码
clock_t finish = clock();
double duration = (double)(finish - start) / CLOCKS_PER_SEC;
printf( "%f seconds\n", duration );//这里就是时间了
return 0;
}
还有问题欢迎继续hi我
#include "stdlib.h"
#include "time.h"
int main( void )
{
clock_t start = clock();
//此处写你的代码
clock_t finish = clock();
double duration = (double)(finish - start) / CLOCKS_PER_SEC;
printf( "%f seconds\n", duration );//这里就是时间了
return 0;
}
还有问题欢迎继续hi我
追问
我想使计时精度高一些,使用timeGettime,如何写代码?
追答
我没用过gettime但是看了一下,他们精度都是毫秒级, clock精度不会比gettime低, 而且gettime 看了一下别人的代码, 计算方法还比较复杂... 我的简化版编译器很多库没有,所以现在不能给你现成的代码,我不建议用那个函数
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询