输入12345输出54321 用C语言while循环
时间: 2024-05-02 09:16:10 浏览: 68
C语言中字符的输入输出以及计算字符个数的方法详解
5星 · 资源好评率100%
下面是使用 while 循环实现输入 12345,输出 54321 的 C 语言代码:
```c
#include <stdio.h>
int main() {
int num = 12345;
while (num > 0) {
printf("%d", num % 10);
num /= 10;
}
return 0;
}
```
输出结果为:`54321`
阅读全文