提交时间:2024-05-18 15:38:13
运行 ID: 147506
#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; }