Bootstrap

string的输入输出

1.输入

string s;
cin>>s;
//不能用scanf

2.输出

cout<<s<<endl;
printf("%s\n",s.c_str());
puts(s.c_str());

不能直接用printf("%s\n",s);

要用s.c_str();

;