Problem E: 重组最大数(字符数组 字符串 排序)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:15 Solved:10

Description

输入一个数,将其重新排列后组成一个最大数。

Input

输入一个数(1<n<1030

Output

输出重组后的数

Sample Input Copy

123456345

Sample Output Copy

655443321

HINT

1.length()成员函数

length()函数是string的内置成员函数,用于返回string类型字符串的实际长度。
示例1:
#include<bits/stdc++.h>
using namespace std;
int main()
{
  string s="hello world!";
  cout<<s.length()<<endl;
  return0;
}
输出:12

2.size()成员函数

size()函数与length()一样,没有本质区别。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s= "hello world!";
    cout << s.size() << endl;
    return 0;
}

输出结果:12

Source/Category