gpt4 book ai didi

c++ - 检查conhost打印需要多长时间

转载 作者:行者123 更新时间:2023-11-28 02:52:37 28 4
gpt4 key购买 nike

我有一个 bool 值数组,每个 bool 值代表一个数字。我正在打印每一个 true使用 for 循环:for(unsigned long long l = 0; l<numt; l++) if(primes[l]) cout << l << endl; numt是数组的大小,等于超过 1000000。控制台窗口需要 30 秒才能打印出所有值,但我在程序中放置的计时器显示 37 毫秒。我如何等待所有值在我的程序的屏幕上完成打印,以便我可以将其包含在我的时间中。

最佳答案

试试这个:

#include <windows.h>
...

int main() {
//init code

double startTime = GetTickCount();

//your loop

double timeNeededinSec = (GetTickCount() - startTime) / 1000.0;
}

关于c++ - 检查conhost打印需要多长时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22698239/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com