#ifndef BMI_H #define BMI_H #include using namespace std; class BMI { private: string name; double weight; double height; public: BMI(string n, double w, double h); double getBMI(); }; #endif