Question: Write a python program that will read 3 numbers. ( num1, num2, num3). Your program should output the following: 1. num1 + num2 num1 -
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. num1/num3 ( Hint: num3 cant 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
NOTE!!!!
How to submit your answer:
- Send your python code file - Send a screenshot of your output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
