数组问题
#include<iostream.h>void main()
{
int A[10],B[10];
int i;
for(i=0;i<10;i++)
{
A[i]=i*2-1;
B[10-i-1]=A[i];
}
for(i=0;i<10; i++)
{
cout<<"A["<<i<<"]="<<A[i]<<endl;
cout<<"B["<<i<<"]="<<B[i]<<endl;
}
}
把这个程序中的第2个for(i=0;i<10; i++)去掉,输出的答案就是错的,为什么了? 第两for(i=0;i<10; i++) ,在程序中是什么意思,不要为什么不可以。 不懂。
#include<iostream.h>
void main()
{
int A[10],B[10];
int i;
for(i=0;i<10;i++)
{
A[i]=i*2-1;
B[10-i-1]=A[i];
cout<<"A["<<i<<"]="<<A[i]<<endl;
cout<<"B["<<i<<"]="<<B[i]<<endl;
}
}
变成这样就错了。