猿问

c/c++如何获取程序的运行时间

aluckdog
浏览 1528回答 2
2回答

叮当猫咪

clock_t start = clock();int i = 0;while(i<1000000){++i;}clock_t end = clock();clock_t duration = end-start;cout << duration << endl;

慕的地6264312

GetSysTime();获取系统当前时间
随时随地看视频慕课网APP
我要回答