以下程序的输出结果是
void main()
{
int i, a[10];
for(i=9;i>=0;i--) a[i]=10-i;
cout<<a[2]<<a[5]<<a[8]<<endl;
}
258
741
852
147
发表评论