c语言任意输入三个整数,进行降序排列输出
时间: 2024-04-29 12:26:39 浏览: 108
好的,您可以使用以下C语言代码实现:
```c
#include <stdio.h>
int main() {
int a, b, c;
printf("请输入三个整数:");
scanf("%d %d %d", &a, &b, &c);
if (a < b) {
int temp = a;
a = b;
b = temp;
}
if (a < c) {
int temp = a;
a = c;
c = temp;
}
if (b < c) {
int temp = b;
b = c;
c = temp;
}
printf("%d %d %d\n", a, b, c);
return 0;
}
```
这段代码能够任意接收三个整数,然后使用简单的交换操作将它们进行降序排序并输出。希望能够对您有所帮助!
阅读全文