Home
(current)
About
Tutorial
Technologies
C#
Deep Learning
Statistics for AIML
Natural Language Processing
Machine Learning
SQL -Structured Query Language
Python
Ethical Hacking
Placement Preparation
Quantitative Aptitude
View All Tutorial
Quiz
C#
SQL -Structured Query Language
Quantitative Aptitude
Java
View All Quiz Course
Q & A
C#
Quantitative Aptitude
Java
View All Q & A course
Programs
Articles
Identity And Access Management
Artificial Intelligence & Machine Learning Project
How to publish your local website on github pages with a custom domain name?
How to download and install Xampp on Window Operating System ?
How To Download And Install MySql Workbench
How to install Pycharm ?
How to install Python ?
How to download and install Visual Studio IDE taking an example of C# (C Sharp)
View All Post
Tools
Program Compiler
Sql Compiler
Replace Multiple Text
Meta Data From Multiple Url
Contact
User
Login
Register
FRESHER BELL ALL LANGUAGE ONLINE COMPILER
Java program to find the root of quadratic equation.
Languages
Java
C
C-99
C++
C++ 14
C++ 17
PHP
Perl
Python 2
Python 3
Ruby
Go Lang
Scala
Bash Shell
SQL
Pascal
C#
VB.NET
Haskell
Objective C
Swift
Groovy
Fortran
Brainf**k
Lua
TCL
Hack
Rust
D
Ada
R Language
Free Basic
Theme
github
xcode
ambiance
monokai
chaos
chrome
Program
import java.util.Scanner; public class QuadraticEquationProgram { public static void main(String args[]){ //Quadratic Equation - ax2 + bx + c = 0 Scanner sc = new Scanner(System.in); System.out.println("Enter the value of a"); double a = sc.nextDouble(); System.out.println("Enter the value of b"); double b = sc.nextDouble(); System.out.println("Enter the value of c"); double c = sc.nextDouble(); double determinant = (b*b)-(4*a*c); double sqrt = Math.sqrt(determinant); if(determinant>0){ double root_1st = (-b + sqrt)/(2*a); double root_2nd = (-b - sqrt)/(2*a); System.out.format("Root1 = %.2f and Root2 = %.2f", root_1st, root_2nd); } else if(determinant == 0) { double root = (-b + sqrt)/(2*a); System.out.format("Root is %.2f",root); } else { double real = -b / (2 * a); double imaginary = Math.sqrt(-determinant) / (2 * a); System.out.format("Root1 = %.2f+%.2fi", real, imaginary); System.out.format("\n Root2 = %.2f-%.2fi", real, imaginary); } } }
Run
Clear
Input
2 4 2
Output
Powered By Fresher Bell™
Similar Program
#
Program
Language
1
Java program to calculate value using base and exponent ( power value ) using for loop
Java
2
Java For Loop Example
Java
3
Java Multiple Object Example
Java
4
Java Break Keyword Example
Java
5
Java program to get current date and time
Java
6
Java Unary Operator Boolean Inverting Example
Java
7
write a java program to count of uppercase and count of lowercase & output will be in the form of (up-lc)
Java
8
Java program to find factorial of user input
Java
9
Java program to check whether a given number is even or odd
Java
10
Write a java program so that odd position char will be in uppercase & even will be lowercase
Java
11
Java Abstract Class Example
Java
12
Java program to find quotient and remainder on division by taking input from user
Java
13
Java Unary Operator Negating Example
Java
14
Java program to remove whitespaces from the string
Java
15
Java program to check whether user input is palindrome or not
Java
16
Java program to add element to ArrayListv and get size of it
Java
17
Write a program to find odd number from student roll number
Java
18
Write a java program to find the lcm .Given input in the form of day interval of dinner. Find the day on which they both will lunch together / dinner together.
Java
19
Java Logical Operator Example
Java
20
Java program to get IP address of my System
Java
#
Program
Language
Copyright © 2020
Inovatik
- All rights reserved