"生成"菜单下有个"清理解决方案",还有个 "清理..."
或者右键单击项目名称也有个清理
把<string.h>改成<string>就好了。另外,可以直接用命名空间std,你那样写有点麻烦。
#include <iostream>
#include <string>
using namespace std
int main()
{
string word
// read until end-of-file ,writing each word to a new line
while (cin >>word)
cout <<word <<endl
system("pause") //暂停一下,看结果
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)