devc++运行时输出位置错乱
时间: 2023-11-13 19:02:22 浏览: 98
解决Python Matplotlib绘图数据点位置错乱问题
根据提供的两个代码引用,第一个代码引用是将数字写入文件中,第二个代码引用是从文件中读取数字并计算程序运行时间。如果在运行第二个代码引用时输出位置错乱,可能是因为第一个代码引用中的输出流没有被关闭,导致第二个代码引用中的输入流无法正确读取文件。可以在第一个代码引用中添加fout.close()语句来关闭输出流,以解决这个问题。
以下是修改后的第一个代码引用:
```c++
#include<iostream>
#include<fstream>
using namespace std;
int main() {
ofstream fout("Data.in");
for(int i=0; i<100000; i++)
fout<<i<<endl;
fout.close();
return 0;
}
```
阅读全文