3个数比大小的C语言代码
时间: 2024-10-12 18:17:55 浏览: 61
在C语言中,你可以使用if语句来比较三个整数的大小。以下是一个简单的示例代码:
```c
#include <stdio.h>
int main() {
int num1, num2, num3;
// 输入三个数字
printf("Enter three numbers: ");
scanf("%d %d %d", &num1, &num2, &num3);
// 比较并输出结果
if (num1 > num2) {
if (num1 > num3) {
printf("%d is the largest number.\n", num1);
} else {
printf("%d is the second largest number.\n", num3);
}
} else {
if (num2 > num3) {
printf("%d is the second largest number.\n", num2);
} else {
printf("%d is the smallest number.\n", num3);
}
}
return 0;
}
```
这段代码首先从用户那里获取三个整数,然后用嵌套的if条件来判断每个数字是否大于另一个,从而确定它们之间的相对大小。
阅读全文