用if语句编写一个c程序,输入a,b,c三个值,输出其中较大者
时间: 2024-11-12 16:39:30 浏览: 61
在C语言中,你可以通过if-else语句来判断并输出a、b、c三个变量中的最大值。下面是一个简单的示例程序:
```c
#include <stdio.h> // 引入输入输出库
int main() {
float a, b, c; // 定义三个浮点型变量
printf("Enter the first number: ");
scanf("%f", &a); // 输入第一个数
printf("Enter the second number: ");
scanf("%f", &b); // 输入第二个数
printf("Enter the third number: ");
scanf("%f", &c); // 输入第三个数
if (a > b && a > c) { // 如果a大于b且a大于c
printf("The largest number is: %.2f\n", a); // 输出a
} else if (b > a && b > c) { // 否则,如果b大于a且b也大于c
printf("The largest number is: %.2f\n", b); // 输出b
} else { // 否则,c就是最大的
printf("The largest number is: %.2f\n", c); // 输出c
}
return 0;
}
```
在这个程序中,用户会依次输入三个数,然后if-else结构根据条件判断并打印出其中的最大值。
阅读全文