Computer Science, asked by vandanakhanduri392, 6 hours ago

What is the equivalent java expression for √ b2-4ac​

Answers

Answered by gaurimungurwadi
0

Answer:

sqrt() function is used. Here, sqrt() function is used to find the square root of b² - 4ac.

Explanation:

Please mark me as Brainliest

Answered by bbharathdpi
0

Answer:

What is the equivalent java expression for √ b2-4ac

Solution:

Math.sqrt((Math.pow(b,2))-(4*a*c))

Similar questions