Computer Science, asked by puchkikundu9, 4 months ago

Write the Java expression for the following mathematical expression

√(a3+b3

)/2ab​

Answers

Answered by Oreki
3

\textsf{\large Given Expression}

    \dfrac{\sqrt{a^{3} + b^{3}}}{2ab}

\textsf{\large Java Expression}

    \texttt{Math.sqrt(a * a * a + b * b * b) / (2 * a * b);}

Similar questions