# 6-2 找最大值及其下标 在一维整型数组中找出其中最大的数及其下标。 ### 函数接口定义: ```c++ int fun(int *a,int *b,int n); ``` 其中形参`a` 、`b`、`n `都是用户传入的参数。函数fun的功能是在指针`a`所指向的一维数组中找出其中最大的数及其下标,下标存到指针`b`所指的变量里,函数返回最大值。 ### 裁判测试程序样例: ```c++ #include #define N 10 int fun(int *a,int *b,int n); int main() { int a[N],i,max,p=0; for(i=0;i