convert the following arithmetic expression into
java statement x= (a5 + b7
) /√
Answers
Answered by
0
Answer:
Convert the following into Java statement X = ( a5 + b7 )/ * root symbol * ab
Answered by
0
question a^5 + b^7 /√ab
Answer:
x=Math.pow(a,5)+Math.pow(b,7)/Math.sqrt(ab)
Similar questions