Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- var n=int.Parse(Console.ReadLine());
- Console.WriteLine(new string('*',n));
- for (int i=1; i<=n-2; i++)
- {
- Console.WriteLine('*'+new string(' ',n-2)+'*');
- }
- Console.WriteLine(new string('*',n));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment