Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace RectangleOfNxNStars
- {
- class Program
- {
- static void Main()
- {
- int side = int.Parse(Console.ReadLine());
- for (int i = 0; i < side; i++)
- {
- for (int j = 0; j < side; j++)
- {
- Console.Write('*');
- }
- Console.WriteLine();
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment