我是 C++ 新手,在这个简单的问题上遇到了一些困难。以下代码表现出一些奇怪的行为。我正在尝试将一堆数字打印到文本文件中并计算需要多长时间。对于较小的 n (< 5000),代码会运行,但创建的文本文件是乱码。对于 n > 10000,程序崩溃并出现错误“分段错误(核心转储)”。
这是我的完整代码:
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
double listN(int n)
{
clock_t start = clock();
ofstream resultsfile;
resultsfile.open("Number.txt");
for (int i = 0; i < n; i++)
{
resultsfile << i + "\n";
}
resultsfile.close();
return (1000 * (clock() - start)/(double) CLOCKS_PER_SEC);
}
int main()
{
const int NUM_RUNS = 20;
double time = 0;
int n;
cout << "Enter the value n:";
cin >> n;
for (int i = 0; i < NUM_RUNS; i++)
{
time += listN(n);
}
cout << time / NUM_RUNS <<endl;
return 0;
}
有人知道这个问题吗?