Write a program to convert à US length in miles, yards, feet and inches to a Metric System length in kilometers meters, and centimeters. A sample run is seen in grey from the figure. After the numbers of miles, yards, feet and inchers are entered, the length should be converted entirely to inches and then divided by 39.37 to obtain the value in meters. The int function should be used to break the total meters into a whole number of kilometers and meters. The number centimeters should be displayed to one decimal place. The needed formulas are as follows: Total_inches = 63360*miles + 36*yards + 12*feet + inches Total_meters = total_inches/39.37 kilometers = int(total_meters/1000) You will need to write out the rest of the numbers in meters left over after converting to kilometer. For example if the total meters calculated is 6035.358765. Your out should be 6 kilometers, 35 meters and 35.9 centimeters. Make sure to have functions for each calculations and for the user defined inputs. Check to make sure that user inputs are a number and not a character. Enter number of miles: 5 Enter number of yards: 20 Enter number of feet: 2 Enter number of inches: 4 Metric length: 8 kilometers 65 meters 73.5 centimeters

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 22PE
icon
Related questions
Question
Python. Please comment an explanation for each line of code and make sure each calculation has a new function.
Write a program to convert a US Customary System
length in miles, yards, feet and inches to a Metric
System length in kilometers meters, and centimeters.
A sample run is seen in grey from the figure. After
the numbers of miles, yards, feet and inchers are
entered, the length should be converted entirely to
inches and then divided by 39.37 to obtain the value
in meters. The int function should be used to break
the total meters into a whole number of kilometers
and meters. The number centimeters should be
displayed to one decimal place. The needed formulas
are as follows:
Total_inches = 63360*miles + 36*yards + 12*feet +
inches
Total_meters = total_inches/39.37
kilometers = int(total_meters/1000)
You will need to write out the rest of the numbers in
meters left over after converting to kilometer. For
example if the total meters calculated is
6035.358765. Your out should be 6 kilometers, 35
meters and 35.9 centimeters. Make sure to have
functions for each calculations and for the user
efined inputs. Check to make sure that user inputs
are a number and not a character.
Enter number of miles: 5
Enter number of yards: 20
Enter number of feet: 2
Enter number of inches: 4
Metric length:
8 kilometers
65 meters
73.5 centimeters
Transcribed Image Text:Write a program to convert a US Customary System length in miles, yards, feet and inches to a Metric System length in kilometers meters, and centimeters. A sample run is seen in grey from the figure. After the numbers of miles, yards, feet and inchers are entered, the length should be converted entirely to inches and then divided by 39.37 to obtain the value in meters. The int function should be used to break the total meters into a whole number of kilometers and meters. The number centimeters should be displayed to one decimal place. The needed formulas are as follows: Total_inches = 63360*miles + 36*yards + 12*feet + inches Total_meters = total_inches/39.37 kilometers = int(total_meters/1000) You will need to write out the rest of the numbers in meters left over after converting to kilometer. For example if the total meters calculated is 6035.358765. Your out should be 6 kilometers, 35 meters and 35.9 centimeters. Make sure to have functions for each calculations and for the user efined inputs. Check to make sure that user inputs are a number and not a character. Enter number of miles: 5 Enter number of yards: 20 Enter number of feet: 2 Enter number of inches: 4 Metric length: 8 kilometers 65 meters 73.5 centimeters
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning