Computer Science, asked by deeputhapa6695, 9 months ago

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

Answers

Answered by anujamishra18604
1

Answer:

x = ((a*a*a*a*a + a*a*a*a*a*a*a*a) / Math.sqrt(ab))

Answered by tabishabbas64
1

(math.pow(a,5)+(b,7)/math.sqrt(ab)

Similar questions