Beispiel #1
0
        public static void Main()
        {
            double[]         numbers = { 5, 10, 15, -3.0, 1000 };
            StatisticPrinter printer = new StatisticPrinter();

            printer.PrintStatistics(numbers);
        }
Beispiel #2
0
 public static void Main()
 {
     double[] numbers = { 5, 10, 15, -3.0, 1000 };
     StatisticPrinter printer = new StatisticPrinter();
     printer.PrintStatistics(numbers);
 }