用C语言写三个数中比较大小的代码
时间: 2023-03-31 10:04:47 浏览: 100
可以使用以下代码来比较三个数的大小:
#include <stdio.h>
int main() {
int a, b, c;
printf("请输入三个整数:\n");
scanf("%d %d %d", &a, &b, &c);
if (a > b && a > c) {
printf("%d 最大\n", a);
} else if (b > a && b > c) {
printf("%d 最大\n", b);
} else {
printf("%d 最大\n", c);
}
return ;
}
相关问题
用C语言写出三个整数比较大小的代码
答:int compare(int x, int y, int z) {
int max = x;
if (y > max)
max = y;
if (z > max)
max = z;
return max;
}
帮我写一个三个数比较大小的c语言代码
int a, b, c;
if (a > b)
{
if (a > c)
printf("a is the largest number");
else
printf("c is the largest number");
}
else
{
if (b > c)
printf("b is the largest number");
else
printf("c is the largest number");
}
阅读全文