用c语言编程实现求一维数组a[20]中最大值及其位置
时间: 2023-06-03 20:04:45 浏览: 365
c语言实现 一维数组找其中最大值
好的,这个问题我可以回答。以下是用C语言编写求一维数组a[20]中最大值及其位置的程序:
```
#include <stdio.h>
int main() {
int a[20] = {3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7, 9, 3, 2, 3, 8, 4};
int i, max = a[0], pos = 0;
for (i = 1; i < 20; i++) {
if (a[i] > max) {
max = a[i];
pos = i;
}
}
printf("最大值是%d,它在数组中的位置是%d\n", max, pos+1);
return 0;
}
```
这个程序会输出数组a中的最大值及其在数组中的位置。若有疑问,欢迎继续提问。
阅读全文