c语言3个数字大小排序
时间: 2023-09-12 08:10:57 浏览: 133
c代码-4个数的冒泡排序
以下是使用 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;
}
```
该程序中,使用 `scanf` 函数获取用户输入的三个数字,依次比较它们的大小,然后将它们按从小到大的顺序输出。
阅读全文