write the java expression for :
Attachments:
Answers
Answered by
7
= (-b +math.sqrt(b*b - 4*a*c))/ (2*a)
I hope this will help you...
I hope this will help you...
Answered by
1
Java Expression:
double x = (-b + Math.sqrt(b * b - 4 * a * c)) / 2 * a;
Similar questions