Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147506 | 林汐 | 逆序数 | C++ | 解答错误 | 0 | 0 MS | 244 KB | 203 | 2024-05-18 15:38:13 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e; cin>>a; b=a%10;//Ones c=a/10%10;//Tens d=a/100%10;//Hundreds e=a/1000;//thousand cout<<b<<c<<d<<e; return 0; }