Convert the following arithmetic expression x=(a^5 + a^7)/√ab to java statement
Answers
Answered by
1
Answer:
x = ((a*a*a*a*a + a*a*a*a*a*a*a*a) / Math.sqrt(ab))
Answered by
1
(math.pow(a,5)+(b,7)/math.sqrt(ab)
Similar questions