Computer Science, asked by rangavelan93, 4 months ago

write the Java expression for the following (a² + b²)²​

Answers

Answered by sanasiju
3

Math.pow(a*a+b*b,2)

pls mark as BRAINLIEST I will follow and inbox u

Answered by Oreki
1

\textsf{\large Given Expression}

    (a^{2} + b^{2})^{2}

\textsf{\large Java Expression}

    \texttt{Math.pow(a * a + b * b, 2);}

Similar questions