mossich • 10天前
using namespace std; int main(){
int a,b,c=0; cin>>a; while(a!=0){ b=a%10; c*=10; c+=b; a/=10; } cout<<c; return 0;
}
评论:
请先登录,才能进行评论