Write a program using a suitable mathematical function to print the largest of the two numbers -45 and -
50 and also print the value of 10.5 raised to the power 3.8.
Answers
Answered by
1
Answer:
a = -45
b = -50
if a > b:
print(-45)
else:
print(-50)
_______________________________________
print(10.5 ** 3.8)
_______________________________________
the above programmes are written in PYTHON
Similar questions