题解 | #数字颠倒#
数字颠倒
https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
解题思路:利用数字与10的余数来,比如17%10=7
#include <stdio.h> int main() { unsigned int x=0; scanf("%d",&x);//接收无符号整型 if(x==0)//0的时候直接输出0 { printf("0"); } while(x>0)//变量大于0的时候进入循环 { printf("%d",x%10);//输出x与10的余数也就是x的最后一位 x/=10;//x=x/10来把最后一位去了 } return 0; }