Computer Science, asked by saxenaseema07054, 6 months ago

Write java expression of √(5^2+3y^2)+10xy​

Answers

Answered by imtiyazallam
4

Answer:

Math.sqrt(Math.pow(5, 2) + Math.pow((3 * y), 2)) +10 * x * y;

Similar questions