plmnbvcxz4 @ 2024-12-18 18:54:19
using namespace std;
int main(){
int n;cin>>n;
int number=0;
bool put=right;
for(int i=1;i<=n*n;i++){
if(!number){cin>>number;put=!put;}
number--;
cout<<put;
if(i%n==0)
cout<<'\n';
}
return 0;
}
by liushiyu0428 @ 2024-12-18 19:08:38
@plmnbvcxz4
通过你给出的代码初步分析如下:
你给的代码没有头文件
(下面的括号内代码复制到第一行)
(#include<bits/stdc++.h> )
且你的bool put=right;
这一句是不是把 put 变量赋值为真
(bool put=true;)