用c语言编写程序,输入三个整数,按由小到大的顺序输出。
时间: 2023-12-07 10:19:00 浏览: 130
C语言实验-有3个整数a,b,c,由键盘输入,编写程序输出其中绝对值最大(或最小)的数。
5星 · 资源好评率100%
好的,以下是C语言代码:
```c
#include <stdio.h>
int main() {
int a, b, c;
printf("请输入三个整数,以空格隔开:");
scanf("%d %d %d", &a, &b, &c);
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
if (a > b) {
int temp = a;
a = b;
b = temp;
}
printf("从小到大的顺序为:%d %d %d", a, b, c);
return 0;
}
```
这个程序会提示用户输入三个整数,然后通过比较大小,将它们按由小到大的顺序输出。
阅读全文