fbinnzhivko

03.04 Wine Glass

Apr 17th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.13 KB | None | 0 0
  1. using System;
  2. class WineGlass
  3. {
  4.     static void Main()
  5.     {
  6.         int N = int.Parse(Console.ReadLine());
  7.        
  8.         int starsCount = N - 2;
  9.         int dotsCount = 0;
  10.  
  11.         int counter = 0;
  12.         do
  13.         {
  14.             string dots = new string('.', dotsCount);
  15.  
  16.             if (counter < N / 2)
  17.             {
  18.                 string stars = new string('*', starsCount);
  19.                 Console.WriteLine("{0}\\{1}/{0}", dots, stars);
  20.                 starsCount -= 2;
  21.                 dotsCount++;
  22.                 counter++;
  23.             }
  24.             else if ((N < 12 && counter > N / 2 - 1 && counter < N - 1) ||
  25.                 (N >= 12 && counter > N / 2 - 1 && counter < N - 2))
  26.             {
  27.                 dotsCount = N / 2 - 1;
  28.                 dots = new string('.', dotsCount);
  29.                 Console.WriteLine("{0}||{0}", dots);
  30.                 counter++;
  31.             }
  32.             else if ((N < 12 && counter > N - 2) || (N >= 12 && counter > N - 3))
  33.             {
  34.                 Console.WriteLine(new string('-', N));
  35.                 counter++;
  36.             }
  37.         } while (counter < N);
  38.     }
  39. }
Add Comment
Please, Sign In to add comment