为什么运行错误
#include <stdio.h>
int main()
{
int i,j;
int score[]={67,98,75,63,82,79,81,91,66,84};
for( i=0;i<=9;i++)
{
for( j=0;j<=i;j++)
{
if (score[j]>score[j+1])
{
int temp;
temp=score[j];
score[j]=score[j+1];
score[j+1]=temp;
}
}
}
for(i=0;i<=9;i++)
{
if (i != 9)
printf ("%d\n",score[i]);
else
printf("%d\n",score[i]);
}
return 0;
}