// Compute the roots of the quadratic equation // __________ // x = -b +/- \/ b*b - 4ac // ------------------- // 2a import java.util.*; public class Roots1 { public static void main(String[] args) { } }