Write java expression of the following
-b+√(b²-4ac)/2a
√(mn)+³√(m+n)
Answers
Answered by
0
Answer:
(-b+ Math.sqrt(b*b-4.0*a*c))/(2.0*a);
Math.sqrt(Math.pow(m,n)+(Math. sqrt(m+n )));
Similar questions