| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5420 | 罗炜翰 | 分离整数的各个数 | C++ | Wrong Answer | 0 | 0 MS | 260 KB | 147 | 2025-02-09 14:57:34 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>b; do { a = b % 10; b /= 10; }while(b); cout<<a; }