bmi.hh 127 B

123456789101112
  1. #ifndef BMI_H
  2. #define BMI_H
  3. class Bmi{
  4. float x; //resultado
  5. public:
  6. Bmi(float cm, float kg);
  7. float getBmi();
  8. };
  9. #endif