public void MyCode()
        {
            BodyAnalyser myBodyAnalyser = new BodyAnalyser();

            string result = myBodyAnalyser.AnalyseBMI(1.86, 90);
            Console.WriteLine(result);
        }
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line
            BodyAnalyser newbody = new BodyAnalyser();


            // The LAST line of code should be ABOVE this line
        }
示例#3
0
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line
            BodyAnalyser bmi = new BodyAnalyser();

            bmi.AnalyseBMI(1.70, 44.00);
            // The LAST line of code should be ABOVE this line
        }
示例#4
0
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line
            BodyAnalyser analyse = new BodyAnalyser();

            Console.WriteLine(analyse.CalculateBMI(1.80, 75));
            Console.WriteLine(analyse.AnalyseBMI(1.80, 75));
            // The LAST line of code should be ABOVE this line
        }
示例#5
0
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line
            BodyAnalyser body1 = new BodyAnalyser();

            Console.WriteLine(body1.AnalyseBMI(420, 69));


            // The LAST line of code should be ABOVE this line
        }
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line

            BodyAnalyser Body1 = new BodyAnalyser();


            Console.WriteLine($"resultat af bmi body1 {Body1.CalculateBMI(1.5, 30 )}");
            Console.WriteLine($"bmi analyse body1 {Body1.AnalyseBMI(1.5,30)}");

            BodyAnalyser Body2 = new BodyAnalyser();

            Console.WriteLine($"resultat af bmi body2 {Body2.CalculateBMI(1.9, 90)}");
            Console.WriteLine($"bmi analyse af body2 {Body2.AnalyseBMI(1.9,90)}");

            BodyAnalyser Body3 = new BodyAnalyser();

            Console.WriteLine($"resultat af bmi body3 {Body3.CalculateBMI(1.7, 200)}");
            Console.WriteLine($"bmi analyse af body3 {Body3.AnalyseBMI(1.7, 200)}");



            // The LAST line of code should be ABOVE this line
        }