| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 47380 | 杨中琦 | 分离整数的各个数位 | C++ | Accepted | 100 | 0 MS | 248 KB | 138 | 2022-07-14 17:45:37 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; while(n){ cout<<n%10<<" "; n/=10; } return 0; }