Question: ( 5 0 pts ) Write a program hw . cpp that reads in two lengths in the format x ' y ' ' (

(50 pts) Write a program hw.cpp that reads in two lengths in the format x'y''(i.e.x feet y inches) and returns the difference in length between the two in the same format. You may assume that the first length is always larger than the second! Note that to represent the unit of inches, we use two single-quotation marks instead of one double-quotation mark.
A typical run of your program should look like this (user input shown in red):
Enter two lengths in feet and inches (larger first!)
32'66''
15'11''
Difference is 16'7''
Hint 1: First work on getting your program simply read the four measurement values, then work on getting it to print out the difference in inches, then work on getting the difference in feet and inches.
Hint 2: The string constant "'" works just fine, but to get the character constant of the apostrophe you must write "1", which uses the backslash as an escape character.
Hint 3: For ideas on how to chop a length in inches into feet and inches, look at the Minutes and Seconds program, which has to deal with the similar problem of chopping a time in seconds up into minutes and seconds.
 (50 pts) Write a program hw.cpp that reads in two lengths

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!