| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5637 | lizhengqian2008 | 分离整数的各个数位 | C++ | Accepted | 100 | 0 MS | 248 KB | 170 | 2020-08-14 16:34:17 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; cout<<n%10<<" "; while(n/10%10!=0){ cout<<n/10%10<<" "; n=n/10; } return 0; }