Computer Science, asked by talishzaman1, 6 months ago

write the java expression for h²=p²+b²​

Answers

Answered by Omprasad1234567890
3

Answer:

JAVA EXPRESSION

ans) (h*h)= (p*p) + (b*b)

this may help you

please mark this answer as brainlist answer

please give thanks to me in this answer

Answered by Oreki
0

\textsf{\large Given Expression}

    \: \: \: \: \: \: \: \: h^2 = p^2 + b^2\\So, \: h = \sqrt{p^2 + b^2}

\textsf{\large Java Expression}

    \texttt{h = Math.sqrt(p * p + b * b);}

Similar questions