用C语言输入三个数,从小到大排序输出
时间: 2023-03-28 18:01:13 浏览: 202
C语言实现3个数从小到大排序/输出的方法示例
你好,这是一个很好的问题。以下是用 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 ;
}
```
希望能够帮到你!
阅读全文