Задание
Заполните пропуски в тексте программы для нахождения корней квадратного уравнения a*x^2+b*x+c=0
package com.company;
...
public class Main {
public static void main\(String⟨0⟩ args\) \{
**\.\.\.** num = Scanner\(System\.in\);
System\.out\.println\("Enter a: "\);
int a **\.\.\.** ;
System\.out\.println\("Enter b: "\);
**\.\.\.** = num\.nextInt\(\);
System\.out\.println\("Enter c: "\);
int c = num\.nextInt\(\);
int d **\.\.\.**
if **\.\.\.** **\.\.\.**
double x1 = **\.\.\.**
System\.out\.println\("X1= "\+x1\+" X2= " **\.\.\.** **\.\.\.**
\}
**\.\.\.** \(d==0\) System\.out\.println\("X= " **\.\.\.**
**\.\.\.** System\.out\.println\("No result"\);
\}
}