Computer Science, asked by 36214700rai, 4 months ago

convert the following arithmetic expression into

java statement x= (a5 + b7

) /√​

Answers

Answered by anindyaadhikari13
10

Here is the java expression for the given code.

double x=Math.pow(a, 5)+Math.pow(b,7);

Math.pow(x, y) is used to return x raised to the power y. It always returns the value in double data type.

Answered by killingwolf710
0

Answer:

double x=Math.pow(a, 5)+Math.pow(b,7)

Explanation:

Similar questions