求助
#include <iostream.h>main()
{
char a[]={'1','3','4','5','6','7','8','9','2','='};
for(int i =0 ;i<10;i++)
{
for(int j =0 ;j<10;j++)
{
for(int k=0;k<10;k++)
{
for(int l=0;l<10;l++)
{
for(int m=0;m<10;m++)
{
cout<< a<<a<<a<<a<<a<<"\n";
}
}
}
}
}
}
为什么输出的数据大部分都丢失了
?
页:
[1]