Warning! It seems that you are using Dodona within another webpage, so not everything may work properly. Let your teacher know so that he can solve the problem by adjusting a setting in the learning environment. In the meantime, you can click this link to open Dodona in a new window.
H5 Beslissingen - BMI calculator melding overgewicht of normaal gewicht
Sign in to test your solution.
using System;
namespace BMI_if_else
{
public class Program
{
public static void Main(string[] args)
{
//variabele declareren
double lengteInMeter;
double lengteInCm;
double gewicht;
double bmi;
//gegevens persoon opvragen
Console.WriteLine("Wat is uw lengte in cm?");
lengteInCm = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Wat is uw gewicht in kg?");
gewicht = Convert.ToDouble(Console.ReadLine());
//lengte in cm omzetten naar meter
lengteInMeter = lengteInCm / 100;
//berekening BMI
bmi = gewicht / Math.Pow(lengteInMeter, 2);
//afronden
bmi = Math.Round(bmi, 2);
lengteInMeter = Math.Round(lengteInMeter, 2);
//Kleef jouw code hieronder
//kleef jouw code hierboven
//resultaat tonen
Console.WriteLine($"Een persoon met een lengte van {lengteInMeter} m en een gewicht van {gewicht} kg heeft een BMI van {bmi}.");
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.