#include<stdio.h>
main()
{
int i,a[10];
for(i=0;i<=9;i++) a[i]=i;
for(i=9;i>=0;i--)
printf(“%d”,a[i]);
}
第二个for语句起什么作用 是什么意思?