在vs console下,
1 添加计时器
#include <Windows.h>
double start = GetTickCount();
double end = GetTickCount();
totalTime += (end - start);
精度毫秒
2 让doc窗口不在程序结束后马上消失
在main()的结尾添加system("pause");
在vs console下,
1 添加计时器
#include <Windows.h>
double start = GetTickCount();
double end = GetTickCount();
totalTime += (end - start);
精度毫秒
2 让doc窗口不在程序结束后马上消失
在main()的结尾添加system("pause");