1234567891011121314151617181920212223242526272829
#include <iostream> #include <stdlib.h> using namespace std; //module prototype void calculatesBmi(&double weight, &double height); //Global constant Const double KILOGRAM = 0.453592 int main() { //some variables double weight double height cout << "Hello, today we are going to be calculating your BMI" << endl; cout << "Please type in your weight" << endl; cin >> weight; cout << "You typed in " << weight << endl; cout << "Please type in your height" cin << height; cout << "You typed in " << height << endl; cout << "Please give us a second to calculate your BMI." endl; calculatesBmi(weight, height); system("Pause"); }