Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DrawFort
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- int midSum = n * 2 - 4 - 2 * (n/2);
- Console.WriteLine("/{0}\\{1}/{2}\\", new string('^', n / 2), new string('_', midSum), new string('^', n / 2));
- for (int i = 0; i < n - 3; i++)
- {
- Console.WriteLine("|" + new string(' ', n * 2 - 2) + "|");
- }
- Console.WriteLine("|{0}{1}{2}|", new string(' ', n / 2+1), new string('_', midSum), new string(' ', n / 2+1));
- Console.WriteLine("\\{0}/{1}\\{2}/", new string('_', n / 2), new string(' ', midSum), new string('_', n / 2));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment