用C语言编写,使用指针编写一个程序,使得输入四个整数,从小到大排列输出
时间: 2024-05-15 11:17:36 浏览: 109
好的,让我来回答您的问题。
以下是使用指针和C语言编写的程序,可以输入四个整数并按从小到大的顺序输出它们:
```c
#include <stdio.h>
void sort(int *a, int *b, int *c, int *d);
int main() {
int a, b, c, d;
printf("请输入四个整数:\n");
scanf("%d %d %d %d", &a, &b, &c, &d);
sort(&a, &b, &c, &d);
printf("四个整数从小到大排列的结果为:\n");
printf("%d %d %d %d", a, b, c, d);
return 0;
}
void sort(int *a, int *b, int *c, int *d) {
int temp;
if (*a > *b) {
temp = *a;
*a = *b;
*b = temp;
}
if (*a > *c) {
temp = *a;
*a = *c;
*c = temp;
}
if (*a > *d) {
temp = *a;
*a = *d;
*d = temp;
}
if (*b > *c) {
temp = *b;
*b = *c;
*c = temp;
}
if (*b > *d) {
temp = *b;
*b = *d;
*d = temp;
}
if (*c > *d) {
temp = *c;
*c = *d;
*d = temp;
}
}
```
希望这个程序可以帮到您!
阅读全文