fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. int n,m; //задаем переменные(количество столбцов и строк)
  7. cin>>n>>m; //вводим их
  8. for(int i=1;i<n+1;i++) { //запускаем цикл по стобцам
  9. for(int j=1;j<m+1;j++) { //запускаем цикл по строкам
  10. int k=abs(i-j);
  11. if ((k%4)==0) cout<<"0"; //задаем условие, согласно с закономерностью
  12. else if ((k%2)==0) cout<<"1";
  13. else cout<<"+";
  14. }
  15. cout<<endl;
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0s 3464KB
stdin
8 25
stdout
0+1+0+1+0+1+0+1+0+1+0+1+0
+0+1+0+1+0+1+0+1+0+1+0+1+
1+0+1+0+1+0+1+0+1+0+1+0+1
+1+0+1+0+1+0+1+0+1+0+1+0+
0+1+0+1+0+1+0+1+0+1+0+1+0
+0+1+0+1+0+1+0+1+0+1+0+1+
1+0+1+0+1+0+1+0+1+0+1+0+1
+1+0+1+0+1+0+1+0+1+0+1+0+