//将每列的最小值放入每列的最后for(x = 0; x < n; x++){temp = 0x7fffffff;for(y = 0; y < m; y++){if(i[y][x] < temp)temp = i[y][x];}temp = 0x7fffffff; 是什么意思呀?