मराठी

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. - Computer Applications

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.07: Mathematical Library Methods - EXERCISES [पृष्ठ ८१]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.07 Mathematical Library Methods
EXERCISES | Q VI. 6. | पृष्ठ ८१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×