Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20655 石利伟 调整三位数,使其值最大 C++ 通过 100 0 MS 252 KB 235 2021-06-19 16:54:56

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int b[10000],n=0; int main(){ int a; cin>>a; b[0]=a%10; while(a){ n++; a/=10; b[n]=a%10; } sort(b+0,b+n); for(int i=n-1;i>=0;i--){ cout<<b[i]; } return 0; }


测评信息: