Programming Course in C# ¡Free!

Draw a rectangle 1

 Sunday, March 31, 2013 published by Exercises C#
Write a program in C # to draw a rectangle on the screen. The measurements of the rectangle will be 3 columns wide and 5 rows tall. Use a digit entered by the user to draw it.

Input

7

Output

777
777
777
777
777

Solve