Wednesday, 10 September 2014

BMI Calculator in C++

18:36

BMI CALCULATOR


#include <iostream>
#include <conio.h>
using namespace std;
void main()
{
      float x,y,z,d;
      cout<<"Enter mass in kg: ";
      cin>>x;
      cout<<"Enter Height in cm: ";
      cin>>y;
      z=y/100;
      d=x/(z*z);
      cout<<"Body Mass Index(BMI) = "<<d;
      getche();

}


Written by

We are Creative Blogger Theme Wavers which provides user friendly, effective and easy to use themes. Each support has free and providing HD support screen casting.

0 comments:

Post a Comment

 

© 2013 All in One. All rights resevered. Designed by Templateism

Back To Top