c++问题,急求!!

输入一个字符串,分别把其中奇数位和偶数位的所有字符提取出来,按顺序组成两个新字符串分别输出。要求用string方法... 输入一个字符串,分别把其中奇数位和偶数位的所有字符提取出来,按顺序组成两个新字符串分别输出。要求用string方法 展开
 我来答
_0x1F1E5E10
推荐于2016-01-19 · TA获得超过295个赞
知道小有建树答主
回答量:293
采纳率:50%
帮助的人:313万
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s;
    string s1;
    string s2;
    s = "wellcome";
    int n = s.size();
    int i;
    s1.clear();
    s2.clear();
    for(i=0;i<n;i++)
    {
        if(i%2)
            s1.append(1, s[i]);
        else
            s2.append(1, s[i]);
    }
    cout << "str s is:" << endl;
    cout << s << endl << endl;
    cout << "str s1 is:" << endl;
    cout << s1 << endl << endl;
    cout << "str s2 is:" << endl;
    cout << s2 << endl << endl;
    return 0;
}
更多追问追答
追问
编译了一下好像有错哎
追答
更正

#include
#include
using namespace std;
int main()
{
string s;
string s1;
string s2;
s = "wellcome";
int n = s.size();
int i;
s1="";//// 这里
s2="";////
for(i=0;i<n;i++)
{
if(i%2)
s1.append(1, s[i]);
else
s2.append(1, s[i]);
}
cout << "str s is:" << endl;
cout << s << endl << endl;
cout << "str s1 is:" << endl;
cout << s1 << endl << endl;
cout << "str s2 is:" << endl;
cout << s2 << endl << endl;
return 0;
}
匿名用户
2014-09-16
展开全部
#include <iostream>
#include <string>

using namespace std;
int main()
{
string instr;
string out = "";
int count = 0;

cin >> instr;
for (int i = 0; i < instr.length(); i++)
{
if (i % 2 == 0)
{
out.insert(out.begin() + count, instr[i]);
count++;
}
else
{
out.append(1, instr[i]);
}
}
cout << out << endl;

return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式