maxInd=i;} if(a[i]<min_){ min_=a[i];minInd=i;} } printf("最大值:%d 最大值所在位置:%d\n最小值:%d 最小值所在位置:%d\n",max_,maxInd,min_,minInd);return 0;}