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 House
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- int firststars = 1;
- if (n % 2 == 0)
- firststars = 2;
- for (int i = 0; i < (n + 1) / 2; i++)
- {
- Console.WriteLine("{0}{1}{0}",
- new string('-', (n - firststars) / 2),
- new string('*', firststars));
- firststars += 2; //firststars = firststars + 2;
- }
- for (int i = 0; i < n / 2; i++)
- {
- Console.WriteLine("|{0}|", new string('*', n - 2));
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment