Exemplo n.º 1
0
 public QuadraticEquation(string inputString)
 {
     this._roots       = null;
     this.coefficients = GetValuesFromInputString(inputString);
     this.mode         = GetMode();
 }
Exemplo n.º 2
0
 public QuadraticEquation(Сoefficients coefficients)
 {
     this._roots       = null;
     this.coefficients = coefficients;
     this.mode         = GetMode();
 }