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