用c写从键盘任意输入三个整数,将他们按从小到大的顺序输出(要求使用选择结构实现)
时间: 2023-04-05 13:05:08 浏览: 135
C#编写任意输入三个整数,从小到大输出
5星 · 资源好评率100%
可以回答这个问题。以下是代码:
```c
#include <stdio.h>
int main() {
int a, b, c;
printf("请输入三个整数:\n");
scanf("%d%d%d", &a, &b, &c);
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
printf("从小到大的顺序是:%d %d %d\n", a, b, c);
return 0;
}
```
阅读全文