我还是编程新手,我开始了一个草稿项目并将代码复制到另一个项目中,但是当我尝试调试时,我收到此错误消息,我不知道发生了什么。谁能帮帮我?
// this is my code
#include "Questions.h"
#include <iostream>
#include <fstream>
using namespace std;
int main(void)
{
ofstream myfile;
myfile.open ("Questions.txt");
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}
错误说
错误 C1075:匹配 @questions.cpp(10) 的左大括号 '{' 之前的文件结尾