Computer Science, asked by 36214700rai, 7 months ago

convert the following arithmetic expression into

java statement x= (a5 + b7

) /√​

Answers

Answered by jhaanju24052010
0

Answer:

Convert the following into Java statement X = ( a5 + b7 )/ * root symbol * ab

Answered by abhijithMR
0

question a^5 + b^7 /√ab

Answer:

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

Similar questions