2个回答
展开全部
#include <stdio.h>
int main()
{
int a, t;
scanf ("%d", &a);
t = 0;
while (a){
t= t*10+a%10;
a/=10;
}
printf("%d\n", t);
return 0;
}
更多追问追答
追问
可以用正规一点的格式吗?这样有点乱
追答
#include <stdio.h>
int main()
{
int a, t = 0, g;
scanf ("%d", &a);
while (a!=0)
{
g = a%10;
t= t*10+g;
a/=10;
}
printf("%d\n", t);
return 0;
}
这也乱,我也是醉了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询