Computer Science, asked by sarthakjoshisj93, 10 months ago

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 pkarmakar0094
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 soumilishr143
7

Please refer to the given attachment.

Attachments:
Similar questions