static void Main(string[] args)
        {
            TestCode _testCode = new TestCode();

            string[] height = { "5#4", "6#2", "5#1", "6#6" };
            _testCode.MaxHeight(height, height.Length);
        }
        public bool test()
        {
            TestCode tested = new TestCode();

            string[] height = { "5#8", "5#7", "6#0", "5#7" };
            int      size   = height.Length;

            tested.MaxHeight(height, size);
            return(true);
        }
 static void Main(string[] args)
 {
     TestCode _testCode = new TestCode();
     int      a = 80, b = 20;
     double   d = Divide(a / b);
 }