Write a program in Python 3.0 to obtain X, y, z from user and calculate expression :4x^4+3y^3+9z+6(22/7)?
Answers
Answered by
37
Answer:
x=int(input("Enter x"))
y=int(input("Enter y"))
z=int(input("Enter z"))
d=(4*x)**4 + (3*y)**3 + 9*z + 6*(22/7)
print(d)
Explanation:
Answered by
7
Please refer to the given attachment.
Attachments:
Similar questions