用C语言输入三个数,从小到大排序输出
时间: 2023-03-28 15:01:13 浏览: 210
你好,这是一个很好的问题。以下是用 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 ;
}
```
希望能够帮到你!
相关问题
c语言输入三个数从小到大排序输出要求用函数和指针实现
下面是用函数和指针实现输入三个数从小到大排序输出的C语言代码:
```c
#include <stdio.h>
void sort(int *a, int *b, int *c) {
int temp;
if (*a > *b) {
temp = *a;
*a = *b;
*b = temp;
}
if (*a > *c) {
temp = *a;
*a = *c;
*c = temp;
}
if (*b > *c) {
temp = *b;
*b = *c;
*c = temp;
}
}
int main() {
int a, b, c;
printf("请输入三个数:");
scanf("%d%d%d", &a, &b, &c);
sort(&a, &b, &c);
printf("从小到大排序后的结果为:%d %d %d\n", a, b, c);
return 0;
}
```
首先在主函数中使用 `scanf` 函数输入三个数,然后调用 `sort` 函数进行排序。 `sort` 函数传入三个指针,利用指针访问和修改变量的值,实现对三个数的排序。最后在主函数中输出排序后的结果。
c语言输入三个数从小到大输出
在C语言中,如果你想输入三个数并按从小到大的顺序输出它们,你可以使用一个简单的循环结构和条件判断。下面是一个基本的示例程序:
```c
#include <stdio.h>
int main() {
int num1, num2, num3;
// 输入三个数
printf("请输入第一个数:");
scanf("%d", &num1);
printf("请输入第二个数:");
scanf("%d", &num2);
printf("请输入第三个数:");
scanf("%d", &num3);
// 检查并交换如果需要
if (num2 < num1) {
int temp = num1;
num1 = num2;
num2 = temp;
}
if (num3 < num1 || (num3 > num1 && num3 < num2)) {
int temp = num1;
num1 = num3;
num3 = temp;
}
if (num2 < num3) {
int temp = num2;
num2 = num3;
num3 = temp;
}
// 输出排序后的数
printf("按照从小到大的顺序,数列是:%d, %d, %d\n", num1, num2, num3);
return 0;
}
```
在这个程序中,我们首先获取用户输入的三个数,然后通过比较,逐步将较大的数字移到后面,直到得到排序的结果。最后,我们将排序后的数字打印出来。
阅读全文