#include<stdio.h>
void bubble(float a[])
{int i,j,temp;
for(i=0;i<=3;i++)
{for(j=0;j<=3-i;j++)
if(a[j]>a[j+1]){
temp=a[j+1];
a[j+1]=a[j];
a[j]=temp;}
}
}
void main()
{float a[5][4],c[5];
int i,j,h,t,m;
for(i=0;i<5;i++)
{for(j=0;j<4;j++)
scanf("%f",&a[i][j]);
}
for(h=0;h<5;h++){
for(t=0;t<4;t++)
c[h]+=a[h][t];
}
bubble(c);
for(m=0;m<5;m++)
printf("%f",c[m]);
}
哪里有错,运行结果错误
yes
追答O(∩_∩)O~
yes