cout << "Hello world!" << endl; double mass, height, BMI; cout << "mass? :(kg)"; cin >> mass; cout << "height? :(m)"; cin >> height; BMI=mass/pow(height,2); cout << "BMI?" << BMI<16 && BMI <=18.5) { cout<< "underweight"<< endl; } else if (BMI >18.5 && BMI <=25) { cout<< "normal" <25 && BMI <=30) { cout<< "overweight" << endl; } else { cout<<" you are fat" << endl; } //--------------------------------------------------------end of the block