Hallo,
ich habe mir gestern soo aus Langeweile einen BMI(Body Maß Index) Rechner geschrieben und wollte von euch ein paar verbesserungen hören.
Mit freundlichen Grüßen,
Maurice H.
ich habe mir gestern soo aus Langeweile einen BMI(Body Maß Index) Rechner geschrieben und wollte von euch ein paar verbesserungen hören.
Code:
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
main()
{
double a;
double b;
double c;
double jn;
cout<< "BMI Rechner"<<endl;
cout<< "_________________________________"<<endl<<endl;
cout<< "Gewicht in KG: ";
cin>> a;
cout<< ""<<endl;
cout<< "Koerpergroesse in m: ";
cin>> b;
c=a/(b*b);
if(c<16)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben starkes Untergewicht"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=16 && c<17)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben maeßiges Untergewicht"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=17 && c<18.5)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben leichtes Untergewicht"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=18.5 && c<25)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben Normalgewicht"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=25 && c<30)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben Praeadipositas"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=30 && c<35)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben Adipositas Grad I"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=35 && c<40)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben Adipositas Grad II"<<endl;
cout<< "_________________________________"<<endl;
}
if(c>=40)
{
cout<< "_________________________________"<<endl<<endl;
cout<< "BMI= "<<c<<endl;
cout<< "Sie haben Adipositas Grad III"<<endl;
cout<< "_________________________________"<<endl;
}
getch();
}
Maurice H.