Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Join our platform to connect with experts ready to provide precise answers to your questions in different areas. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Write a program that repeatedly asks the user to enter two measurement units: yards, feet
and inches. In this measurement system, there is 3 feet in one yard and 36 inches in one
yard. The program should then add the two units and display the answer, again in yards,
feet, and inches. Use a do loop that asks the user whether the program should be
terminated. Typical interaction might be
Enter first measurement: 1.1.10
Enter second measurement: 3.2.11
Total is 5.1.9
Do you wish to continue (y/n)?
To add two measurement unit, you'll need to carry 1 feet when the inch value is greater
than 11, and carry 1 yard when there are more than 2 feet. Note that 1.1.10 means 1 yard,
1 foot and 10 inches.
C++​