设成绩在p指向的数组中从下标0开始无间隔存放,共有n项。
int fun(int *p,int n){ int t; for(t=0,n--;n>=0;n--) if(p[n]>t) t=p[n]; return t;}