Programming Examples
Python program which take value of x y z from the user and calculate the equation
WAP to take value of x,y,z from the user and calculate the equationÂ
Solution
x=int(input("Enter x : "))
y=int(input("Enter y : "))
z=int(input("Enter z : "))
fx=4*pow(x,4)+3*pow(y,3)+9*pow(z,2)+6*3.14
print("The Answer is : ",fx)
Output