这个哪里出错了,找不到错的地方,运行不了
# include <stdio.h>main ()
{
int a[10], i, j, t;
for (i=0; i<10; i++) scanf ("%d"&a[i]);
for (j=1;j<=9;j++)
for (i=0;i<10-j;i++)
if (a[i]>a[i+1])
{ t=a[i]; a[i]=a[i+1]; a[i+1]=t; }
for(j=0;j<10;j++) printf("%3d",a[j]);
}
是哪里出错了,运行部了,