C++如何测定一个程序的运行时间(毫秒)
发布网友
发布时间:2022-06-01 18:04
我来回答
共1个回答
热心网友
时间:2023-10-10 14:41
几条语句,没有循环,毫秒级有点大了
#include <windows.h>
#include <stdio.h>
int main()
{
DWORD start,
stop;
start =
GetTickCount();
Sleep(3000);
stop =
GetTickCount();
printf("time: %lld ms\n",
stop - start);
return 0;
}
~