输入数组求最大值c语言
时间: 2023-11-24 13:51:05 浏览: 162
c代码-c语言数组求最大值
以下是使用C语言输入数组求最大值的示例代码:
```c
#include <stdio.h>
int main() {
int arr[10];
int max = 0;
for (int i = 0; i < 10; i++) {
scanf("%d", &arr[i]);
if (arr[i] > max) {
max = arr[i];
}
}
printf("Max value: %d", max);
return 0;
}
```
该程序首先定义了一个长度为10的整型数组`arr`,然后通过循环和`scanf`函数依次读入数组中的10个整数。在读入的同时,使用一个变量`max`记录当前已经读入的最大值。如果读入的数比`max`大,则更新`max`的值。最后,输出`max`即为数组中的最大值。
阅读全文