Computer Science, asked by rayan3742, 4 months ago

b) Write a program to find expression 6x3+7y4/(2xy).​

Answers

Answered by allysia
1

Answer:

A python code goes like:

______________________

x=int(input("Enter value of x: "))

y=int(input("Enter value of y: "))

a=6*(x**3)

b=(7*(y**4))/(2*x*y)

print(a+b)

_______________________

split it in two part just for the sake of making it look less complicated.

Similar questions