C语言:求数组最小值的角标的问题int min = a[0]int index =0for(int i =1 i<N i++){ if(a[i]<min) {min = a[i]index = i }}printf("2023-02-17Python320