Computer Science, asked by shreyansh2400, 1 month ago

Write the java expression for the following:

d =  \sqrt{({5}^{2}  + {x}^{n}) }

Answers

Answered by kamalrajatjoshi94
0

Answer:

double d=0.0;

d=Math.sqrt(5*5+(Math.pow(x,n)))

Similar questions