Respuesta :
(Using python)
When running:
measure(the height you want to enter, the weight you want to enter)
When the input is printed you have to re-enter the data (couldn’t fix that)
It will print the conversions as a result
When running:
measure(the height you want to enter, the weight you want to enter)
When the input is printed you have to re-enter the data (couldn’t fix that)
It will print the conversions as a result

Following are the program to convert height and weight values:
Program:
#include <iostream>//header file
using namespace std;
int main ()//main method
{
double height, weight,h,w; //defining a doubale variable
cout<<"Following are the converter of Weight and height: "<<endl;//print message
cout<<"Enter the height in inches: ";//print message
cin>>height;//input value
cout<<"Enter the weight in stones: ";//print message
cin>>weight;//input value
h=height* 2.54;//converting height value into centimetres and holding its value in h variable
w= weight* 6.364;//converting weight value into kilograms and holding its value in w variable
cout<<"The converted height is "<<h<<" cm."<<endl;//printing the converted value
cout<<"The converted weight is "<<w<<" kg."<<endl;//printing the converted value
return 0;
}
Program Explanation:
- Defining header file.
- Defining the main method.
- Inside the main method defining four double variables that are "height, weight, h, and w".
- Inside this, the "height, weight" variable is used for input value is the from user-end, and "h, w" is used to convert height and weight value into centimeters and kilograms.
- After converting the value using the print method that prints its values.
Output:
Please find the attached file.
Find out more information about the conversion here:
brainly.com/question/26240757
