SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
45
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- namespace ConsoleApp3
- {
- class Program
- {
- static void Main(string[] args)
- {
- int N = int.Parse(Console.ReadLine());
- string stars = new string('*', N);
- string empty = new string(' ', N - 2);
- Console.WriteLine(stars);
- for (int i = 0; i < N - 2; i++)
- {
- Console.WriteLine("*" + empty + "*");
- }
- Console.WriteLine(stars);
- }
- }
- }
RAW Paste Data

