Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
38676 | chenyifei | 数字反转 | C++ | Wrong Answer | 0 MS | 244 KB | 155 | 2024-01-27 21:15:13 |
#include<iostream> using namespace std; int main() { int n; cin>>n; while(n>=1) { int a=n%10; n=n/10; cout<<a<<endl; } return 0; }