Kvadratna enačba


Reševanje kvadratne enačbe v VBscript - i.
ax2+bx+c=0
d=b*b-4*a*c
x1,2=(-b+-sqrt(d))/2a

a *x*x + b *x + c = 0




x1
x2