Computer Science, asked by roshni78725, 5 months ago

write java expression for the following a)d=√(x-y)^2+(a-b)^2​

Answers

Answered by vishwajithk9d
0

Answer:

double d = Math.sqrt(Math.pow((x-y),2)+Math.pow((a-b),2));

Explanation:

this works

Similar questions