我還是新編程,我開始了一個草案項目,並將代碼複製到另一個項目中,但是當我嘗試調試時,我得到了這個錯誤消息,我不知道最近發生了什麼。任何人都可以幫助我嗎?C++編譯器錯誤信息
// 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)被匹配
該錯誤可能出現在Questions.h中 – 2013-04-26 02:21:46
您的代碼編譯並在[ideone](http://ideone.com/qCsJA5)上正常工作。創建一個新文件,將代碼複製粘貼到其中,然後重試。 – dasblinkenlight 2013-04-26 02:23:00