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