Question: Program 3 10pts- Height One way to estimate the height of a child is to use the following formula, which uses the height of
Program 3 10pts- Height One way to estimate the height of a child is to use the following formula, which uses the height of the parents: Hmale_child ((Hmother 13/12) + Hfather)/2 = Hfemale child = ((Hfather 12/13) + Hmother)/2 All heights are in inches. Write a function that takes as input parameters the gender of the child, height of the mother in inches, and height of the father in inches, and outputs the estimated height of the child in inches. The user should be able to input the heights in feet and inches, and the program should output the estimated height of the child in feet and inches. Use the integer data type to store the heights. Function Prototype: int CalculateHeight (int gender, int mother_height, int father_heigh t);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
