c语言编写程序,将四个整按照从小到大的顺序数a,b,c,d按照输出
时间: 2024-05-14 20:12:41 浏览: 92
以下是一个示例程序:
```c
#include <stdio.h>
int main() {
int a, b, c, d;
printf("请输入四个整数:");
scanf("%d %d %d %d", &a, &b, &c, &d);
// 比较大小并交换位置
if (a > b) { int t = a; a = b; b = t; }
if (a > c) { int t = a; a = c; c = t; }
if (a > d) { int t = a; a = d; d = t; }
if (b > c) { int t = b; b = c; c = t; }
if (b > d) { int t = b; b = d; d = t; }
if (c > d) { int t = c; c = d; d = t; }
printf("从小到大排序后为:%d %d %d %d\n", a, b, c, d);
return 0;
}
```
程序运行时,会提示用户输入四个整数,然后对这四个数进行从小到大的排序并输出结果。其中,使用了多个 if 语句进行大小比较和位置交换。
相关问题
c语言编写程序,输入四个整数,按照从小到大的顺序输出
```c
#include <stdio.h>
int main() {
int a, b, c, d;
printf("请输入四个整数:\n");
scanf("%d %d %d %d", &a, &b, &c, &d);
int temp;
if (a > b) { // a 要小于等于 b
temp = a;
a = b;
b = temp;
}
if (a > c) { // a 要小于等于 c
temp = a;
a = c;
c = temp;
}
if (a > d) { // a 要小于等于 d
temp = a;
a = d;
d = temp;
}
if (b > c) { // b 要小于等于 c
temp = b;
b = c;
c = temp;
}
if (b > d) { // b 要小于等于 d
temp = b;
b = d;
d = temp;
}
if (c > d) { // c 要小于等于 d
temp = c;
c = d;
d = temp;
}
printf("从小到大的顺序为:%d %d %d %d\n", a, b, c, d);
return 0;
}
```
用C语言编写,输入四个整数,按照从小到大顺序输出
在C语言中,你可以通过比较和交换的方式来实现四个整数的排序。这里提供一个简单的冒泡排序算法的例子:
```c
#include <stdio.h>
void bubble_sort(int arr[], int n) {
for (int i = 0; i < n - 1; i++) { // 遍历所有数组元素
for (int j = 0; j < n - 1 - i; j++) { // 每次遍历内部再从头开始
if (arr[j] > arr[j + 1]) { // 如果当前元素大于下一个元素
// 交换它们的位置
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
int main() {
int numbers[4];
printf("请输入四个整数:\n");
for (int i = 0; i < 4; i++) {
scanf("%d", &numbers[i]);
}
bubble_sort(numbers, 4); // 对数组进行排序
printf("按从小到大的顺序输出:\n");
for (int i = 0; i < 4; i++) {
printf("%d ", numbers[i]);
}
printf("\n");
return 0;
}
```
当你运行这个程序并输入四个整数时,它会按照从小到大的顺序将数字打印出来。
阅读全文