Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
1 -5 6 x1=3 x2=2
Var a, b, c, d: real; begin write('Введите коэффициенты a,b,c '); readln(a, b, c); d := sqr(b) - 4 * a * c; if d = 0 then writeln('Корень один x = ', (-b / (2 * a)) else if d >0 then writeln('x1 = ',(-b + sqrt(d)) / (2 * a), ' x2 = ',(-b - sqrt(d)) / (2 * a)) else writeln('Действительных корней нет'); end.
run
|
edit
|
history
|
help
0
Microsoft Code
ObjectPool
Left circular rotation of an array
Math Operations
Student Management System
FINAL PRIME NUMBER GENERATOR IN C#
Interface
C# interview question. Closure pitfalls.
megha
Output to get sum = 5 in given array of integers