c语言:3个数abc,按大小顺序输出
时间: 2023-05-15 13:07:18 浏览: 170
C语言输入输出与顺序程序设计测试题.doc
可以使用 if 语句进行比较,代码如下:
#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;
}
阅读全文