题解 | #反向输出一个四位数#
反向输出一个四位数
https://www.nowcoder.com/practice/1f7c1d67446e4361bf4af67c08e0b8b0
#include <stdio.h> int main() { int a=0; scanf("%d",&a); while(a) { printf("%d",a%10); a=a/10; } return 0; }
c语言刷题 文章被收录于专栏
c语言刷题题目
反向输出一个四位数
https://www.nowcoder.com/practice/1f7c1d67446e4361bf4af67c08e0b8b0
#include <stdio.h> int main() { int a=0; scanf("%d",&a); while(a) { printf("%d",a%10); a=a/10; } return 0; }
c语言刷题题目
相关推荐