字符串问题.
#include<iostream.h>#include<string.h>
using namespace std;
void main()
{string a;
cin>>a;
cout<<a;
}
报错为:
F:\C++作业\练习\练习1.cpp(3) : error C2871: 'std' : does not exist or is not a namespace
F:\C++作业\练习\练习1.cpp(5) : error C2065: 'string' : undeclared identifier
F:\C++作业\练习\练习1.cpp(5) : error C2146: syntax error : missing ';' before identifier 'a'
F:\C++作业\练习\练习1.cpp(5) : error C2065: 'a' : undeclared identifier
Error executing cl.exe.
哪位前辈告诉我为什么?是不是vc++组件没装全?