任何人都可以解释这个错误我不明白为什么我得到它。
310:32: error: expected primary-expression before '<<' token
在这行代码中。
cout&lt;&lt; &#34;姓名:&#34; &LT;&LT; setw(22)&lt;&lt; profile [x] .name&lt;&lt; ENDL;
答案 0 :(得分:1)
您忘记将以下内容添加到文件的开头:
#include <iostream>
#include <iomanip>
using std::cout;
using std::endl;
using std::setw;