write down the java expression for √A^2+B^2+C^2
Answers
Answered by
2
Math.sqrt(Math.pow(A, 2) + Math.pow(B, 2) + Math.pow(C, 2));
OR
Math.sqrt((A * A) + (B * B) + (C * C));
Answered by
1
- Write down the java expression for the following.
Given expression,
The java expression for the following will be,
Math.sqrt(A*A+B*B+C*C)
Similar questions