Beispiel #1
0
        public void Multiplicacion()
        {
            var operaciones = new OperacionesMatematicas();

            operaciones.Multiplicacion(A, B);
        }
Beispiel #2
0
        public void Potencia2()
        {
            var operaciones = new OperacionesMatematicas();

            operaciones.Potencia2(A, B);
        }
Beispiel #3
0
        public void Suma()
        {
            var operaciones = new OperacionesMatematicas();

            operaciones.Suma(A, B);
        }