C语言有6个整数,求其最大值(函数)
时间: 2024-12-30 18:36:37 浏览: 15
在C语言中,你可以编写一个函数来找出六个整数中的最大值。下面是一个简单的示例,这个函数叫做`findMax`:
```c
#include <stdio.h>
// 函数声明
int findMax(int a, int b, int c, int d, int e, int f);
int main() {
int num1 = ..., num2 = ..., num3 = ..., num4 = ..., num5 = ..., num6 = ...; // 填入你的六个整数
// 调用函数并打印结果
int max_value = findMax(num1, num2, num3, num4, num5, num6);
printf("最大的数是:%d\n", max_value);
return 0;
}
// 定义函数,接收6个整数参数
int findMax(int a, int b, int c, int d, int e, int f) {
int max = a; // 假设第一个数是初始最大值
if (b > max) {
max = b;
}
if (c > max) {
max = c;
}
if (d > max) {
max = d;
}
if (e > max) {
max = e;
}
if (f > max) {
max = f;
}
return max;
}
```
阅读全文