| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5551 | 余文涛 | 分离整数的各个数位 | C++ | Accepted | 100 | 0 MS | 248 KB | 157 | 2020-08-14 11:44:25 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,t; cin>>d; while(d!=0){ a=d%10; cout<<a<<" "; d/=10; } return 0; }