我正在使用 Dev C++ 使用 ofstream 写入文本文件,但它不起作用,我在 dev c++ 中创建了一个文本文件并将其保存,并在另一个源文件中编写了以下代码:
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
int main(){
srand(time(0));
ofstream out(“hello.txt”);
for(int i=0;i<100;i++)
out << rand()%1000 << “ “;
out.close();
return 0;
}
但是,当我尝试编译此代码时,我收到一个错误,并以红色突出显示以下内容:
ofstream out(“hello.txt”);
它说你好未声明。
我正在关注的教程来自 youtube,程序员使用的是 Linux 操作系统,他使用的是 g++,代码在所有操作系统上是否仍然相同?因为我使用的是 Windows 7。