Question: Your function should have five input arguments, in this order: the value of the torque ( a number ) , the current unit of force

Your function should have five input arguments, in this order: the value of the torque (a
number), the current unit of force (a string), the current unit of length (a string), the desired unit
of force (a string), and the desired unit of length (a string). For example, when converting 100
lb-ft to N-m, the input arguments to your function would be:
convertTorque(100,"lb","ft","N","m")
The function should return two values in this order: a number indicating success (1) or failure (0)
and the value of the converted torque. For example, when converting 100 lb-ft to N-m, the
function should return the following two values: 1 and 135.58. Conversely, if the function is
provided with invalid input, such as an invalid unit of measure, the function should return 0 and
0. For example, when converting 100 lb-ft to ft-ft, the function should return the following two
values: 0 and 0.
2. The function should be able to handle four units of length: ft, in, mm, and m. It should also be
able to handle four units of force: N, lb, oz, and kN. You should perform the conversion using
conditional statements. You may find it convenient to use switch statements.
3. The function should properly handle invalid input by returning a success value of 0.
Hints: Use double quotes for all strings. Dont use single quotes.
Well-documented means: put lots of comments in your code to explain what is going on.

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 Programming Questions!