c语言写三个数从小到大排序
时间: 2023-05-22 13:02:11 浏览: 137
C语言实现3个数从小到大排序/输出的方法示例
以下是C语言写三个数从小到大排序的代码:
```c
#include <stdio.h>
int main() {
int a, b, c;
printf("请输入三个整数:\n");
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;
}
```
希望能对您有所帮助!
阅读全文