在C语言中用自定义函数实现输入3个整数并按从小到大的顺序输出
时间: 2024-10-18 08:11:17 浏览: 29
C语言输入一个整数序列并计算他们的值.rar_C语言输入一个整数序列并计算他们的值_输入序列C语言
5星 · 资源好评率100%
在C语言中,你可以通过创建一个自定义函数来实现这个功能。首先,你需要声明一个函数接受三个整数作为参数,并在函数内部对它们进行排序。这里是一个简单的示例:
```c
#include <stdio.h> // 引入输入输出库
// 自定义函数,接收三个整数并返回无
void sortAndPrint(int a, int b, int c) {
if (a > b) { // 如果第一个比第二个大
if (b > c) { // 如果第二个也比第三个大
int temp = a; // 交换第一个和最大的
a = c;
c = temp;
} else { // 否则,如果第二和第三个相等,判断是否需要再次调整
if (a > c) {
int temp = a;
a = c;
c = temp;
}
}
} else { // 如果第一个不大于第二个
if (a > c) { // 如果第一和第三个相比,第三个更大
int temp = a;
a = c;
c = temp;
}
}
printf("Sorted numbers are: %d, %d, %d\n", a, b, c); // 输出排序后的结果
}
int main() {
int num1, num2, num3;
// 输入三个整数
printf("Enter three integers: ");
scanf("%d%d%d", &num1, &num2, &num3);
// 调用排序函数
sortAndPrint(num1, num2, num3);
return 0;
}
```
当你运行这个程序,它会提示用户输入三个整数,然后按照升序排列并显示。
阅读全文