Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started