Study Material
Computer Applications
Write the Java expression for the following:
(
−
b
+
b
2
−
4
a
c
)
2
a
\dfrac{(-b + \sqrt{b^2 - 4ac})}{2a}
2
a
(
−
b
+
b
2
−
4
a
c
)
Java Operators
131 Likes
Answer
(
-
b
+
Math
.
sqrt
(
b
*
b
-
4
*
a
*
c
)
)
/
(
2
*
a
)
Answered By
65 Likes