摘要:
1 #include 2 #include 3 #define N 6 4 typedef struct 5 { 6 char name[10]; 7 int score; 8 }student; 9 //选择排序 10 void sort1 (student a[]) 11 { 12 int i,j,min; 13 student st; 14 for(i=0;ia[j].score) 20 min=j; 21 } 22 if(min!=i)... 阅读全文
xiaodin1@163.com