Exemplo n.º 1
0
 public Significand(int _integer, Fraction _fraction)
 {
     integer  = _integer;
     fraction = _fraction;
     type     = SignificandType.INTEGERFRACTION;
 }
Exemplo n.º 2
0
 public Significand(Fraction _fraction)
 {
     fraction = _fraction;
     type     = SignificandType.FRACTION;
 }
Exemplo n.º 3
0
 public Significand(int _integer)
 {
     integer = _integer;
     type    = SignificandType.INTEGER;
 }