Length of intercept cut off from a line by a Circle
Given six integers, a, b, c, i, j, and k representing the equation of the circle [Tex](x^2 + y^2 + ax + by + c = 0)[/Tex] and equation of the line [Tex](ix + jy + k = 0)[/Tex], the task is to find the length of the intercept cut off from the given line to the circle. Examples: Input: a = 0, b = 0, c = -4, i = 2, j = -1, k = 1 Output: 3.89872 Input: