Найти ошибку в паскале пишет false program math1; var a,b,c,d,x,x1,x2: real; begin readln(a,b,c); if b=0 then if (c=0) then writeln( 'x=0') else if (-c/a< 0) then writeln('корней нет') else writeln ( x1=sqrt(-c/a), x2=-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/a) else writeln ( x1= -b+sqrt(d)/(2*a) , x2= -b-sqrt(d)/(2*a) ) end.