Пример #1
0
 static void Main(string[] args)
 {
     Snowflakes x = new Snowflakes();
     string[] a = {".",
      "..",
      "***",
      "...."};
     Console.WriteLine(x.flareOut(a));
     Console.ReadLine();
 }
Пример #2
0
        static void Main(string[] args)
        {
            Snowflakes x = new Snowflakes();

            string[] a = { ".",
                           "..",
                           "***",
                           "...." };
            Console.WriteLine(x.flareOut(a));
            Console.ReadLine();
        }