Exemplo n.º 1
0
        public void Print()
        {
            Console.WriteLine("Breast Cancer Case #" + Id);
            Console.WriteLine("Mean of the features:");
            Mean.Print();
            Console.WriteLine("Standard Error of the features:");
            StandardError.Print();
            Console.WriteLine("Extreme values of the features:");
            Extreme.Print();

            Console.WriteLine("Diagnosis: " + (Malignant ? "Malignant" : "Benign"));
        }