Równanie Kwadratowe - Pascal

This commit is contained in:
2024-11-17 20:43:42 +01:00
parent 98cf6f281b
commit 33d784311e
@@ -0,0 +1,44 @@
program rownanie_kwadratowe;
var
a,b,c : Double;
x,x1,x2 : Double;
Delta : Double;
begin
write('Podaj a: ');
ReadLn(a);
write('Podaj b: ');
ReadLn(b);
write('Podaj c: ');
ReadLn(c);
if a=0 then
begin
x:=c/b;