#include
int *GetMax(int score[ ], int n);
int main(void)
{
int i, score[10], *p;
for(i = 0; i < 10; i++)
scanf("%d", &score[i]);
p=【 填入代码 】 (1分) ;
printf("%d\n", *p);
return 0;
}
int *GetMax(int score[ ], int n)
{
int i, temp, pos = 0;
temp = score[0] ;
for(i = 0 ; i < 10 ; i++)
if(score[i] > temp)
{ temp = score[i];
pos = i ;
}
return 【 填入代码 】(1分) ;
}

  • Willson1991    2020-05-12 13:56:32
  • 阅读 1037    收藏 0    回答 1
  • 邀请
  • 收藏
  • 分享
发送
登录 后发表评论
  • 51testing软件测试圈微信