Sprache: C#
BMI berechnen
public double BodyMassIndexBerechnen(double gewicht,int groeßeCm)
{
double bmi = gewicht / Math.Pow(groeßeCm, 2);
return bmi;
}
public double BodyMassIndexBerechnen(double gewicht,int groeßeCm)
{
double bmi = gewicht / Math.Pow(groeßeCm, 2);
return bmi;
}
Alte URL:
/snippet/body-mass-index/12055