public Eulers(string Expresion) { if (Proceso.IsAgrupate(Expresion)) { Expresion = Proceso.DescorcharA(Expresion); } Contenido = Expresion; ObtenerArgumento(); ObtenerCoeficiente(); Operar(); }
public Monomios(string Expresion) { Operacion = new ProductoEntero(); if (Proceso.IsAgrupate(Expresion)) { Expresion = Proceso.DescorcharA(Expresion); } Contenido = Expresion; Niveles = ObtenerNiveles(Contenido); Orden = ObtenerOrden(Niveles); ObtenerElementos(Contenido); }
public Monomios(string Coeficiente, string Literal) { if (Proceso.IsAgrupate(Coeficiente)) { Coeficiente = Proceso.DescorcharA(Coeficiente); } if (Proceso.IsAgrupate(Literal)) { Literal = Proceso.DescorcharA(Literal); } Operacion = new ProductoEntero(); Contenido = new ProductoEntero(Coeficiente, Literal).Result; ObtenerElementos(Contenido); }