-b - VB - 4ac 2a -b + Vb – 4ac and n 2a
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
The two roots of a quadratic equation
ax2 + bx + c = 0 can be obtained using the following formula:
b2 - 4ac is called the discriminant of the quadratic equation. If it is positive, the
equation has two real roots. If it is zero, the equation has one root. If it is negative,
the equation has no real roots.
Write a program that prompts the user to enter values for a, b, and c and displays
the result based on the discriminant. If the discriminant is positive, display two
roots. If the discriminant is 0, display one root. Otherwise, display “The equation
has no real roots.”
Note you can use Math.pow(x, 0.5) to compute √x. Here are some sample
runs:
Enter a, b, c: 1.0 3 1 ↵Enter
The equation has two roots -0.381966 and -2.61803
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images