Home / Questions / Write down java expression for: \[ \begin{align} \\ & T = \sqrt{A^2 + B^2 + C^2} \end{align} \]
Explanatory Question

Write down java expression for: \[ \begin{align} \\ & T = \sqrt{A^2 + B^2 + C^2} \end{align} \]

👁 88 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

T = Math.sqrt(a*a + b*b + c*c)