Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147490 | 林汐 | 逆序数 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 340 | 2024-05-18 15:35:39 |
#include<bits/stdc++.h> //#include<iostream> //#include<cstdio> //#include<iomanip> 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 if(b!=0){ cout<<b;} if(c!=0){ cout<<c;} if(d!=0){ cout<<d;} cout<<e; return 0; }