用交换语句输入一三位正整数 逆序输出
时间: 2023-07-18 17:32:44 浏览: 164
把三位数逆序输出
3星 · 编辑精心推荐
好的,以下是C语言代码实现:
```c
#include <stdio.h>
int main() {
int num;
printf("请输入一个三位正整数:");
scanf("%d", &num);
int a = num / 100;
int b = num / 10 % 10;
int c = num % 10;
int temp;
temp = a;
a = c;
c = temp;
printf("%d\n", 100 * a + 10 * b + c);
return 0;
}
```
这里使用了整型变量来存储输入的数字,并通过除法和取模运算获取每一位数字,然后通过交换变量的值来实现逆序输出。
阅读全文