Computer Science, asked by georgeabm, 1 year ago

how do u write the mathematical expression T=√ a^2+b^2+c^2

Answers

Answered by kairav
1
t=Math.sqrt(Math.pow(a,2)+Math.pow(b,2)+Math.pow(c,2));
Similar questions