HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Sections > Linear Data Structures: Arrays > problem:


50329 - Draw Matrix-1

Guest
• Discussion of problem (1)

Section problems

• 50300 - Matrix
• 50611 - Maximum of the minima
• 50616 - Snake
• 50647 - Spiral
• 50543 - Hotel rooms
• 50271 - Factorial
• 50419 - The longest bitonic sequence
• 50326 - Matrix Operations
• 50329 - Draw Matrix-1
• 50541 - Binary to decimal
• 50592 - Matrix Multiplication
• 50606 - Long product
• 50607 - Long sum
• 50319 - Toll Plazas
• 50318 - Product Info
• 50360 - National Elections
• 50337 - Exam Averages

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Prepared by Ibrahim Mesecan. Difficulty Beta

DRAW MATRIX 1

Write a program that asks for a number n and then draws n*n matrice which is completely filled with ones and zeros like this:
Sample Run 1:
n-->3 // the number we get from the input file is 3
1 1 1
1 0 1
1 1 1

Input specification
There is just one number (n) in the input file showing the size of matrix. 1 ≤ n ≤ 20.

Output specification
The outer most square will be filled with ones. Then, every inner line with zeros and ones following each other.
Give a space after every digit.
Sample Run2:
n-->5 // the number we get from the input file is 5
1 1 1 1 1
1 0 0 0 1
1 0 1 0 1
1 0 0 0 1
1 1 1 1 1

Sample Run3:
n-->6 // the number we get from the input file is 6
1 1 1 1 1 1
1 0 0 0 0 1
1 0 1 1 0 1
1 0 1 1 0 1
1 0 0 0 0 1
1 1 1 1 1 1

Для отправки решений необходимо выполнить вход.

www.contester.ru