编写输入四个整数,按由小到大顺序输出C语言的编程
时间: 2023-04-05 09:03:35 浏览: 142
输入4个整数,要求按由小到大的顺序输出。
我可以回答这个问题。您可以使用C语言的if语句和比较运算符来实现这个功能。以下是一个示例代码:
#include <stdio.h>
int main() {
int a, b, c, d;
scanf("%d %d %d %d", &a, &b, &c, &d);
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (a > d) {
int temp = a;
a = d;
d = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
if (b > d) {
int temp = b;
b = d;
d = temp;
}
if (c > d) {
int temp = c;
c = d;
d = temp;
}
printf("%d %d %d %d", a, b, c, d);
return 0;
}
阅读全文