| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 54358 | 董承诺 | 寻找最低数 | C++ | Wrong Answer | 0 | 0 MS | 240 KB | 248 | 2022-07-29 14:54:31 |
#include<bits/stdc++.h> using namespace std; int a,b,c; int main(){ while(a){ cin>>a; if(a==0) break; if(a<10) cout<<a; else{ b=a/10; c=a%10; if(b<c) cout<<b; if(c<b) cout<<c; } b=0; c=0; } return 0; }