mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-12-16 15:44:39 +00:00
40 lines
770 B
Markdown
40 lines
770 B
Markdown
|
# 6-2 找最大值及其下标
|
||
|
|
||
|
|
||
|
在一维整型数组中找出其中最大的数及其下标。
|
||
|
|
||
|
### 函数接口定义:
|
||
|
```c++
|
||
|
int fun(int *a,int *b,int n);
|
||
|
```
|
||
|
|
||
|
其中形参`a` 、`b`、`n `都是用户传入的参数。函数fun的功能是在指针`a`所指向的一维数组中找出其中最大的数及其下标,下标存到指针`b`所指的变量里,函数返回最大值。
|
||
|
|
||
|
### 裁判测试程序样例:
|
||
|
```c++
|
||
|
#include<stdio.h>
|
||
|
#define N 10
|
||
|
int fun(int *a,int *b,int n);
|
||
|
int main()
|
||
|
{ int a[N],i,max,p=0;
|
||
|
for(i=0;i<N;i++) scanf("%d",&a[i]);
|
||
|
max=fun(a,&p,N);
|
||
|
printf("max=%d,position=%d\n",max,p);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* 请在这里填写答案 */
|
||
|
```
|
||
|
|
||
|
### 输入样例:
|
||
|
```in
|
||
|
2 1 5 4 8 4 5 8 9 1
|
||
|
```
|
||
|
|
||
|
### 输出样例:
|
||
|
```out
|
||
|
max=9,position=8
|
||
|
|
||
|
```
|