C++ string 的问题 ,怎样取出第2个~到最后的字母

[复制链接]
查看11 | 回复3 | 2012-4-11 09:53:56 | 显示全部楼层 |阅读模式
#include #include using namespace std;int main(void){
string str1;
cin >> str1;
string str2(str1);
//复制str1到str2
str2.erase(str2.begin());
//去掉第一个字母
return 0;}...
回复

使用道具 举报

千问 | 2012-4-11 09:53:56 | 显示全部楼层
#include#includeusing namespace std;int main(){string a;cin>>a;string b;for(int i=1;i!=a.size ();i++)b+=a;coutusing namespace std;int _tmain(int argc, _TCHAR* argv[]){//第一种方法//string a = "abcdefghabcdef";//string b;...
回复

使用道具 举报

千问 | 2012-4-11 09:53:56 | 显示全部楼层
string strSrc = "chinese";string strDst(strSrc.begin() + 1 , strSrc.end());...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行