desislava777

Square of Stars

Oct 8th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4. static void Main()
  5. {
  6. var n=int.Parse(Console.ReadLine());
  7. Console.WriteLine(new string('*',n));
  8. for (int i=1; i<=n-2; i++)
  9. {
  10. Console.WriteLine('*'+new string(' ',n-2)+'*');
  11. }
  12. Console.WriteLine(new string('*',n));
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment