H5 Beslissingen - BMI calculator uitgebreid onder, normaal, overgewicht en obesistas

Sign in to test your solution.
using System; namespace BMI_uitgebreid_if_elseif_else { public class Program { public static void Main(string[] args) { //variabelen declareren double lengte, lengteInMeter,gewicht, bmi; //gegevens opvragen Console.WriteLine("Geef uw lengte in cm: "); lengte = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Geef uw gewicht in kg: "); gewicht = Convert.ToDouble(Console.ReadLine()); //berekening uitvoeren //lengte in cm omzetten naar meter lengteInMeter = lengte / 100; //berekening BMI bmi = gewicht / Math.Pow(lengteInMeter, 2); //afronden bmi = Math.Round(bmi, 2); //kleef jouw code hieronder } } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.