c++在包含头文件<string>时候可以使用cout输出

#include<string>

int main()

{

string s="中国";

cout<<s<<endl;

system("pause");

}