C++获取毫秒时间的方法

如下,精确到小数点后两位,时间单位秒(s)


float ftime;
DWORD startTime = GetTickCount();
Sleep(1236);
DWORD totalTime = GetTickCount() - startTime;
ftime = (float)totalTime/1000;
printf("%.2f", ftime);

你可能感兴趣的:(C++,获取,时间)