Computer Science, asked by chaudharigolu, 7 months ago

Convert the following arithmetic expression
into java statement
x = (a^5+b^7) / √ab​

Answers

Answered by dbechara916
3

Answer:

x=(Math.pow(a, 5) +(Math.pow(b, 7)) /Math.sqrt(a*b) ;

Similar questions