测试单元
int Largest(int list[], int length){ int i,max; for(i= 0; i< (length - 1); i++){ if(list[i]>max){ max=list[i]; } } return max; }