Question: Write a python program that will read 3 numbers. (num1, num2, num3). Your program should output the following: 1. num1 + num2 num1 - num3

 Write a python program that will read 3 numbers. (num1, num2,

Write a python program that will read 3 numbers. (num1, num2, num3). Your program should output the following: 1. num1 + num2 num1 - num3 num1 X num2 2. num1um3 (Hint: num3 can't be Zero) 3. The integer division of num1 and num3 4. The square root of num3 (Hint: use math library) 5. The result of m = 5.8 X 2.2^num1 + num3 (Hint: use math.trunc(m) for the output, Truncates m to the nearest Integral toward 0) 6. Bounce: find the sum of all values resulted from point 1 to 5 Your output should be formatted as the following: Insert First Number: 5 Insert Second Number: 10 Insert Third Number: 3 You inserted: num1 = 5 You inserted: num2 = 10 You inserted: num3 = 3 The results are: num1 + num2 = 15 num1 - num3 = 2 num1 x num2 = 50 num1um3 = 1.6666666666666667 floorDivision = 1 num3_SQRT = 1.7320508075688772 m = 301

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!