| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 71159 | sh25_wangsj | 分离整数的各个数 | C++ | Accepted | 0 MS | 240 KB | 196 | 2025-10-24 15:23:30 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a; while(a!=0){ b=a%10; a=(a-b)*1.0/10; cout<<b<<" "; } return 0; }