Hi, I need some help in making a program that reads three values (a, b and c) from a quadratic equation and then writes in this manner (a x^2 + b x + c = 0).
examples:
a b c ? 0 1 -2,5
the equation is: x – 2,5 = 0
a b c ? 2 -1 0
the equation is: 2,0 x^2 - x = 0
a b c ? 3,25 1 -2
the equation is: 3,25 x^2 + x – 2,0 = 0
a b c ? 1 0 1
the equation is: x^2 + 1,0 = 0
Any kind of help is appreciated.

