From 478c12ca5f09fab5084fccd0a0832b0e8ff165c6 Mon Sep 17 00:00:00 2001 From: Kevin Ludwig Date: Wed, 7 Feb 2024 18:38:13 +0100 Subject: [PATCH] =?UTF-8?q?bmi=20rechner=20einsch=C3=A4tzung=20zu=20gewich?= =?UTF-8?q?t=20ausgeben?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bmi.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/bmi.c b/src/bmi.c index b9e7129..d09a175 100644 --- a/src/bmi.c +++ b/src/bmi.c @@ -8,7 +8,7 @@ float calcBMI(float a, float b){ return 0; } -int run_bmi() +int main() { float var1 = 0; float var2 = 0; @@ -23,4 +23,19 @@ int run_bmi() var3 = calcBMI(var1, var2); printf("\nIhr Body-Mass-Index liegt bei %.2f\n", var3); + + if(var3 < 16) + printf("Starkes Untergewicht"); + else if(var3 < 18) + printf("Maessiges Untergewicht"); + else if (var3 < 18.6) + printf("Leichtes Untergewicht"); + else if (var3 < 25.1) + printf("Normalgewicht"); + else if (var3 < 31) + printf("Leichtes Uebergewicht"); + else if (var3 < 36) + printf("Mittleres Uebergewicht"); + else + printf("Starkes Uebergewicht"); }