Wildcxj @ 2020-07-02 20:33:23
#include<iostream>
using namespace std;
int main()
{
int a,temp,k=0;
bool iz=false;
int mp[a*a+1];
cin>>a;
while(cin>>temp)
{
for(int i=0;i<temp;i++)
{
if(iz)mp[i+k]=1;
else mp[i+k]=0;
}
iz=!iz;
k+=temp;
}
int cnt=0;
for(int i=0;i<a;i++)
{
for(int j=0;j<a;j++)
{
cout<<mp[cnt++];
}
cout<<endl;
}
}
by WanderingTrader @ 2020-07-02 20:35:19
@cuixingji 数组开全局,而且你这还没输入就开数组了,能不RE吗
by Wildcxj @ 2020-07-02 20:38:17
对了,谢谢