fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n, i, j;
  6. cin >> n;
  7. int arr[n][n];
  8.  
  9. for (i=0; i<n; i++){ //Filas
  10. for (j=0; j<n; j++){ //Columnas
  11. if((i+j)%2 == 1) arr[i][j] = 1;
  12. else arr [i][j] = 0;
  13. }
  14. }
  15. for (i=0; i<n; i++){ //Filas
  16. for (j=0; j<n; j++){ //Columnas
  17. cout << arr[i][j] << ' ';
  18. }
  19. cout << '\n';
  20. }
  21.  
  22. return 0;
  23. }
Success #stdin #stdout 0.01s 5284KB
stdin
4
stdout
0 1 0 1 
1 0 1 0 
0 1 0 1 
1 0 1 0