c++问题,急求!!
输入一个字符串,分别把其中奇数位和偶数位的所有字符提取出来,按顺序组成两个新字符串分别输出。要求用string方法...
输入一个字符串,分别把其中奇数位和偶数位的所有字符提取出来,按顺序组成两个新字符串分别输出。要求用string方法
展开
2个回答
展开全部
#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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询