Sunday 15 June 2014

C++ program to calculate Body Mass Index



Here is a C++ program to calculate Body Mass Index


 SOURCE CODE OUTPUT
#include<iostream>
using namespace std;
int main()
{
    float weight,height,bmi;
    cout<<"Enter your weight(kg) ";
    cin>>weight;
    cout<<"Enter your height(meters) ";
    cin>>height;
    bmi=weight/(height*height);
    cout<<"Body Mass Index = "<<bmi;
    return 0;
}

Any questions regarding to program please write in comments.

No comments:

Post a Comment