c语言:3个数abc,按大小顺序输出
时间: 2023-05-15 11:07:18 浏览: 175
C语言实现3个数从小到大排序/输出的方法示例
可以使用 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;
}
阅读全文