#ifndef BMI_H #define BMI_H class Bmi{ float x; //resultado public: Bmi(float cm, float kg); float getBmi(); }; #endif