[求助]冒泡排序
#include<stdio.h> #include<string.h> struct stu { char name[20]; int score; };
void bulle_sort(stu r[],int n){ int i,j; for(i=1;i<n-1;i++){ int sweap=0; for(j=1;j<n-1;j++) if(r[j].score>r[j+1].score){ r[0]=r[j]; r[j]=r[j+1]; r[j+1]=r[0]; sweap=1; } if(sweap==0) break; } } void main(){ struct stu stud[10]; for(int i=0;i<10;i++){ printf("name:"); scanf("%s",&stud[i].name); printf("score:"); scanf("%d",&stud[i].score); } bulle_sort(stud,10); for(int j=10;j>0;j--){ printf("name:%s,score:%d\n",stud[10-j].name,stud[10-j].score); } } 编译能够通过,但当输完十个数据后却不能显示结果