全国计算机等级考试C语言考试程序改错题(13)
分类: 计算机
时间: 2022-08-08 20:11:22
作者: 全国等级考试资料网
在考生文件夹下,给定程序MODI.C的功能是:
求一维数组a中的最大元素及其下标。
例如,当一维数组a中的元素为:34,4,2,7,3,12,5,8,5,9,
程序的输出应为:The max is: 34,pos is: 0 。
#include
#include
int max;
maxarr(int arr[ ])
{
int pos,i;
/************found************/
max=arr[0]; |
pos = 0;
for ( i=1; i<10; i++)
if (max < arr[i])
{
max = arr[i];
pos = i;
}
/************found************/
return(pos); |
}
main()
{
int a[10]={34,4,2,7,3,12,5,8,5,9};
printf("The max is: %d ,pos is: %d ", max , maxarr(a));
}