Advertisements
Advertisements
प्रश्न
The standard form of quadratic equation is represented as:
ax2 + bx + c = 0
where d = b2 − 4ac, known as 'Discriminant' of the equation.
Write a program to input the values of a, b and c. Calculate the value of discriminant and display the output to the nearest whole number.
संक्षेप में उत्तर
उत्तर
import java.util.*;
public class Q6
{
public static void main(String args[])
{
Scanner in = new Scanner(System.in);
int a, b, c;
long d;
System.out.println("Enter the values for a, b and c");
a = in.nextlnt();
b = in.nextlnt();
c = in.nextlnt();
d = Math.round(Math.pow(b, 2) − 4 * a * c);
System.out.println("Discriminant(d) = " + d);
}}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?