daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 45 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2.  
  3. namespace ConsoleApp3
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int N = int.Parse(Console.ReadLine());
  10.  
  11.             string stars = new string('*', N);
  12.             string empty = new string(' ', N - 2);
  13.  
  14.             Console.WriteLine(stars);
  15.             for (int i = 0; i < N - 2; i++)
  16.             {
  17.                 Console.WriteLine("*" + empty + "*");
  18.             }
  19.             Console.WriteLine(stars);
  20.  
  21.         }
  22.        
  23.     }
  24. }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top