public static void Main()
        {
            StatisticPrinter statPrint = new StatisticPrinter();
            double[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

            statPrint.PrintStatistics(array);
        }
Example #2
0
        public static void Main()
        {
            StatisticPrinter statPrint = new StatisticPrinter();

            double[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

            statPrint.PrintStatistics(array);
        }