标签:cout
c++在包含头文件<string>时候可以使用cout输出
#include<string>
int main()
{
string s="中国";
cout<<s<<endl;
system("pause");
}
本文出自 “姑苏城” 博客,请务必保留此出处http://ji123.blog.51cto.com/11333309/1981959
关于c++能否使用cout输出string类型
原文地址:http://ji123.blog.51cto.com/11333309/1981959