preview

Double Fat Research Paper

Good Essays

#include using namespace std; int main() { double BMI = 0.0; // BMI Values cout << "\nUnderweight : less than 18.5" << endl; cout << "\nNormal : between 18.5 and 24.9" << endl; cout << "\nOverweight : between 25 and 29.9" << endl; cout << "\nObese : 30 or greater" << endl; double weight;// define the variable weight in pounds cout << "\nPlease enter your weight in Pounds.\n" << endl; cin >> weight;// get the user's weight in Pounds cout << "lbs" << endl; double height;// define the variable height in Inches cout << "\nPlease enter your height in Inches.\n" << endl; cin >> height;// get the user's height in Inches cout << "Inches" << endl; cout << "\nPlease enter your height in Feet.\n" << endl; cin >>

Get Access