funkcjeKwadratowe
Guest 1,244 6th Nov, 2022
clear
clc
disp('Prgoram do liczenia funkcji kwadratowych')
a = input('Podaj a: ');
b = input('Podaj b: ');
c = input('Podaj c: ');
delta = b^2 - 4 * a * c;
fprintf('Delta wynosi %d\n\n', delta);
pierwDelt = sqrt(delta);
x1 = (-b + pierwDelt) / 2 * a;
x2 = (-b - pierwDelt) / 2 * a;
fprintf('x1 dla tej funkcji wynosi %.0f, a x2 wynosi %.0f', x1, x2);
To share this paste please copy this url and send to your friends
RAW Paste Data