COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
checkpoint3.8.cpp File Reference
#include <iostream>
Include dependency graph for checkpoint3.8.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 29 of file checkpoint3.8.cpp.

29 {
30 int weight; double height;
31 // take two inputs
32 cin >> weight >> height;
33 cout << "Your BMI = " << weight/(height*height) << endl;
34 cout << "BMI VALUES" << endl;
35 cout << "Underweight: less than 18.5" << endl;
36 cout << "Normal: between 18.5 and 24.9" << endl;
37 cout << "Overweight: between 25 and 29.9" << endl;
38 cout << "Obese: 30 or greater";
39 return 0;
40}