Computer Science, asked by tanmay1294, 10 months ago

Java expression for b+b^2-4ac/2a

Answers

Answered by samruddhi100
3

Answer:

b+(b*b)-4*a*c/2*a

Explanation:

hope it helps you

Answered by Oreki
7

\textsf{\large \textbf{Given Expression}}

   \dfrac{-b + \sqrt{b^2 - 4ac}}{2a}

\textsf{\large \textbf{Java Expression}}

   \texttt{(-b + Math.sqrt(b * b + 4 * a * c)) / 2 * a;}

Similar questions