C语言冒泡排序法将学生成绩按从小到大顺序排列
C语言冒泡排序法将学生成绩按从小到大顺序排列
日期:2015-05-25 09:29:08 人气:1
#include struct student{ char name[20]; char sex[20]; int age; int score;};void sort(struct student data[], int size){ /*冒泡排序*/ int x,y; struct student temp; for(x=0;xdata[y+1].score) { temp=data[y+1]; data[y+1]=data[y]; data[y]=temp