Computer Science, asked by Shreyanshi2cool, 1 year ago

write the java expression for :

Attachments:

Answers

Answered by realsujaykumar
7
= (-b +math.sqrt(b*b - 4*a*c))/ (2*a)


I hope this will help you...
Answered by Oreki
1

Java Expression:

double x = (-b + Math.sqrt(b * b - 4 * a * c)) / 2 * a;

Similar questions