Найти ошибку ( в паскале выдает false) - это программа по решению квадратного уравнения program math; var a,b,c,x,x1,x2,d: real; begin readln(a,b,c); if a=0 then if b=0 then if c=0 then writeln('x-любое число') else writeln('корней нет') else writeln ('x=',x = -c/b) else if b=0 then if c=0 then writeln(x=0)else if (-c/a< 0) then writeln ('корней нет')else writeln(x=sqrt(-c/a)) else if c=0 then writeln (x1=0, x2=-b/a) else d: = b*b-4*a*c ; if (d< 0) then writeln ('корней нет') else if (d=0) then writeln (x=-b/(2*a)) else writeln (x1=(-b+sqrt(d))/2*a, x2=(-b-sqrt(d))/ 2*a) end.