用c语言比较三个数的大小?
时间: 2024-09-16 22:04:54 浏览: 44
C语言三个数排列大小的实现方法
5星 · 资源好评率100%
在C语言中,你可以使用if-else语句或者三元运算符来比较三个整数的大小。这里有两个简单的示例:
1. 使用if-else语句:
```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\n", num1);
else
printf("%d is the largest\n", num3);
} else {
if (num2 > num3)
printf("%d is the largest\n", num2);
else
printf("%d is the largest\n", num3);
}
return 0;
}
```
2. 使用三元运算符(更简洁一些):
```c
#include <stdio.h>
int main() {
int num
阅读全文