使用C++将从控制台输入的一组字符串里面的数字提取出来,并降序排列。

如:510jhf\`40]-853tlk;fj输出:85543100,谢谢了... 如:510jhf\`40]-853tlk;fj输出:85543100,谢谢了 展开
 我来答
FserSun
2015-05-19 · 超过17用户采纳过TA的回答
知道答主
回答量:24
采纳率:0%
帮助的人:26.3万
展开全部
#include <algorithm>
#include <string>
#include <cstring>
#include <ctype>
#include <iostream>
using namespace std;
int main()
{
string str;
cin >> str;
int len = str.size(),
i = 0,
j = 0;  // 第一个非数字位置
for (; i < len && j < len; )
{

while (j < len && isdigit(str[j]))
{
j++;
}
i = j;
while (i < len && !isdigit(str[i]))
{
i++;
}
if (i < len && j < len)
{
swap(str[j],str[i]);
i++;
j++;
}
}
sort(str.begin(),str.begin() + j,greater<char>());
for (int i = 0; i < j; i++)
{
cout<<str.at(i);
}
//cout<<str;
return 0;
}
爱学习的鹅
推荐于2017-09-15 · TA获得超过137个赞
知道答主
回答量:68
采纳率:100%
帮助的人:62.7万
展开全部
// 5_19.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "请输入字符: ";
std::string input;
std::cin >> input;

std::vector<char> number;
if (!input.empty())
{
for (unsigned i = 0; i < input.size(); ++i)
{
if ((input[i] >= '0') && (input[i] <= '9'))
number.push_back(input[i]);
}
}
else
{
std::cout << "Error" << std::endl;
}

std::sort(number.begin(), number.end());

for (std::vector<char>::iterator it = number.begin(); it != number.end(); ++it)
{
std::cout << *it << std::endl;
}
return 0;
}

写的比较仓促,细节上可能有点问题
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式