Computer Science, asked by salonitomar94821, 8 months ago

Write java expression of the following
-b+√(b²-4ac)/2a
√(mn)+³√(m+n)

Answers

Answered by hm16082007
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