Computer Science, asked by tabrez26, 3 days ago

Write a program in java to calculate and print the value of d where : d = (x ^ 4 + y ^ 5) / x * y Taking x = 5 , y = 7​

Answers

Answered by sfchikkagoudar
0

Answer:

(d = x \times 4 + y \times 5) \div x \times yWhere x=5

y=7

Explanation:

d= 5×4+7×5÷5×7

= 20+35÷35

=20+1=21

Similar questions