Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108873 | 江婉儿 | 删数问题 | C++ | 解答错误 | 88 | 0 MS | 240 KB | 316 | 2023-11-04 11:23:07 |
#include<bits/stdc++.h> #include<cmath> using namespace std; int main() { int s; char n[100]; cin>>n>>s; for(int a=1;a<=s;a++) { for(int b=0;b<=strlen(n);b++) { if(n[b]>n[b+1]) { for(int c=b;c<=strlen(n);c++) { n[b]=n[b+1]; break; } } } } cout<<n; }