题解 | #反向输出一个四位数#
反向输出一个四位数
https://www.nowcoder.com/practice/1f7c1d67446e4361bf4af67c08e0b8b0
#include <stdio.h>
int main() {
int n;
scanf("%d",&n);//1234/10 123 1234%10 4
while(n)
{
printf("%d",n%10);
n=n/10;
}
return 0;
}
查看9道真题和解析