From 1ccb4021768f6c984c596432e3521f00be84f642 Mon Sep 17 00:00:00 2001 From: Leaced Date: Sun, 2 Apr 2017 16:52:49 +0200 Subject: [PATCH] =?UTF-8?q?Programm=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BMI.cpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 BMI.cpp diff --git a/BMI.cpp b/BMI.cpp new file mode 100644 index 0000000..3d90c94 --- /dev/null +++ b/BMI.cpp @@ -0,0 +1,36 @@ +#include +#include +#include + +//Der Body-Mass-Index (BMI) – auch Körpermasseindex (KMI), Körpermassenzahl (KMZ) oder Quetelet-Kaup-Index – ist eine Maßzahl für die Bewertung des Körpergewichts eines Menschen in Relation zu seiner Körpergröße. + +int main() +{ + long double height, weight; + std::string input; + + std::cout<<"Gib deine Gr\x94\xE1 \be in metern ein: "; + getline(std::cin,input); + std::stringstream(input)>>height; + + if(height<=0) + { + std::cout<<"ERROR: Die eingegebene Gr\x94\xE1 \be ist nicht m\x94glich."; + return(1); + } + + std::cout<<"...und jetzt dein Gewicht: "; + getline(std::cin,input); + std::stringstream(input)>>weight; + + if(weight<=0) + { + std::cout<<"ERROR: Das eingegebene Gewicht ist nicht m\x94glich."; + return(1); + } + + std::cout<<"\nDein BMI ist: "<