编写一个C程序:输入a,+b,+c三个值,输出其中最大者+#include<stdio.h>+int+main()+{+int+a,+b,+c;+printf("please+input+three
时间: 2023-11-16 16:05:24 浏览: 71
程序输入a、b、c三个值,输出其中最大值。
这是一个C程序,用于输入a, b, c三个值,输出其中最大者。完善该程序,可以在输入数字时加上空格或回车,如下所示:
```c
#include<stdio.h>
int main() {
int a, b, c;
printf("please input three integer numbers separated by space or enter:");
scanf("%d %d %d", &a, &b, &c);
if (a > b && a > c)
printf("max=%d", a);
else if (b > a && b > c)
printf("max=%d", b);
else
printf("max=%d", c);
return 0;
}
```
调试该程序时,可以使用C编译器进行编译和运行。在输入数字时,需要按照程序中指定的格式输入,即用空格或回车分隔三个整数。如果输入格式不正确,程序可能会出现错误或无法正常运行。
阅读全文