Guest User

Square Frame

a guest
Nov 21st, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Kvadratna_ramka
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. int input = int.Parse(Console.ReadLine());
  14. for (int j = 0; j < input; j++)
  15. {
  16. for (int i = 0; i < input; i++)
  17. {
  18. Console.Write("{0} ", new string(i == 0 || i == input - 1 ? '\u002B' : '\u002D', 1));
  19. }
  20. Console.WriteLine();
  21. }
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment