Previous Next
0 / 33
Module DEMO-32-60DEMO-C-32

Grid of 1s and 0s

DEMO-C-32 โ€ข Programming in C

Browser-only practice

Problem Statement

Write a program that reads an integer N and prints an N x N grid where the columns alternate between 1 and 0.

Constraints

1 <= N <= 20

Input Format

A single integer N (1 <= N <= 20).

Output Format

An N x N grid of alternating 1s and 0s.

Sample Testcases

Submit runs every public testcase in this browser. Results and code never leave this device.

Sample #1
Public sample
3
1 0 1
1 0 1
1 0 1
Input: 3
Sample #2
Public sample
5
1 0 1 0 1
1 0 1 0 1
1 0 1 0 1
1 0 1 0 1
1 0 1 0 1
Input: 5
Sample #3
Public sample
1
1
Input: 1
Sample #4
Public sample
7
1 0 1 0 1 0 1
1 0 1 0 1 0 1
1 0 1 0 1 0 1
1 0 1 0 1 0 1
1 0 1 0 1 0 1
1 0 1 0 1 0 1
1 0 1 0 1 0 1
Input: 7

Web terminal

C, C++, Java, and Python run locally in a browser VM. No worker or visualizer is used.

Saved in this browser
Editor settings