输入三个整数x、y、z,请把这三个数由小到大输出C语言
时间: 2024-05-03 21:21:05 浏览: 67
输入三个整数x,y,z,请把这三个数由小到大输出
排序如下:
```c
#include <stdio.h>
int main() {
int x, y, z;
scanf("%d %d %d", &x, &y, &z);
int temp;
if (x > y) {
temp = x; x = y; y = temp;
}
if (x > z) {
temp = x; x = z; z = temp;
}
if (y > z) {
temp = y; y = z; z = temp;
}
printf("%d %d %d", x, y, z);
return 0;
}
```
阅读全文