0

我在第 60 行的作业中遇到了标题问题。请任何人尽快帮助我。

59 void storeFile();
60 {
61 cout<< "All the data members are stored in file." << endl;
62 
63 ofstream outFile;
64 const char *outputFileName = ("record.txt");
65 outFile.open(outputFileName, ios::out);
66 
67 if(!outFile)
68 {
69      cout<< "\nUnable to open the file." << outputFileName << endl;
70      }
71 
72      else
73          {
74              outFile VUID; endl;
75              outFile campusID; endl;
76              outFile studentName; endl;
77              outFile fatherName; endl;
78                  }
79 };

错误:第 60 行的 '{' 标记 c++ 之前的预期不合格 ID

4

3 回答 3

9

删除第;59 行末尾的 。

顺便说一句,正如 ChrisCM 和 U2CO3 所写的,第;79 行的末尾不需要,即使那不会产生编译错误。

于 2013-06-26T07:42:42.613 回答
2

似乎错误地;在第 59 行添加了一个

void storeFile();

将其替换为

void storeFile()
于 2013-06-26T07:43:47.477 回答
1

并且可能也删除第 79 行的那个。

于 2013-06-26T07:43:48.987 回答