赞
踩
代码如下:
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
string s;
cin >> s;
//printf("%s\n", s); 错误的写法
printf("%s\n", s.c_str()); //正确的写法
}
注意不能直接填写s而要加上.c_str()后缀。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。