Question: C++ only Function ConvertWeight() takes one integer parameter. Define the second ConvertWeight() function to take two integer parameters, pounds and ounces, and returns the total
C++ only

Function ConvertWeight() takes one integer parameter. Define the second ConvertWeight() function to take two integer parameters, pounds and ounces, and returns the total number of ounces. Ex: If the input is 53 , then the output is: 5 pounds yields 80 ounces. 5 pounds and 3 ounces yields 83 ounces. Note: The total number of ounces can be found using (pounds * 16) + ounces
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
