c语言编程实现求一堆数组a[20]中的最大值及其位置
时间: 2023-12-12 15:53:40 浏览: 167
C#源代码-求数组的最大值.zip
好的,这个问题是编程题。我们可以通过循环遍历数组,找出最大值及其位置。下面是一个示例程序:
```c
#include <stdio.h>
int main()
{
int a[20] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};
int max = a[0];
int pos = 0;
for (int i = 1; i < 20; i++) {
if (a[i] > max) {
max = a[i];
pos = i;
}
}
printf("最大值:%d,位置:%d\n", max, pos);
return 0;
}
```
当然了,实际应用中,数组的值往往是从文件或者用户输入中读取的,这里只是为了示例方便而直接赋值了。
阅读全文