发布网友
共1个回答
热心网友
灞曞紑鍏ㄩ儴
#include<string.h>
int main()
{int x;
scanf("%d",&x);
for(;x;x/=10)printf("%d",x%10);
return 0;
}