예제 #1
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     Funciones.Operaciones op = new Funciones.Operaciones();
     double[] x = new double[] { 10, 20, 20, 40, 55 };
     this.lblSaludos.Text = op.Saludo(this.txtNombre.Text);
     this.txtR.Text       = op.Suma(x).ToString();
 }
예제 #2
0
        private void btnEjecutar_Click(object sender, EventArgs e)
        {
            Funciones.Operaciones op = new Funciones.Operaciones();
            this.txtNombre.Text = op.Saludo("Eduardo");

            double[] x = new double[] { 10, 11, 22, 33 };
            this.txtSuma.Text = op.Suma(x).ToString();
        }
예제 #3
0
        static void Main(string[] args)
        {
            Funciones.Operaciones op = new Funciones.Operaciones();
            double[] y = new Double[] { 10, 11, 12, 13, 14, 20, 30 };//inicializar valor
            //y[0] = 12; y[1] = 22; y[2] = 100; y[3] = 20; y[4] = 33;

            double x = op.Suma(y);

            Console.WriteLine(op.Saludo("Michael"));
            Console.WriteLine("la suma del array es : {0}", x);
            Console.ReadKey();
        }
예제 #4
0
        static void Main(string[] args)
        {
            Funciones.Operaciones op = new Funciones.Operaciones();
            double[] y = new Double[] { 10, 11, 12, 13, 14, 20, 30 };

            /*y[0] = 12;
            *  y[1] = 22;
            *  y[2] = 100;
            *  y[3] = 20;
            *  y[4] = 33;*/
            double x = op.Suma(y);

            Console.WriteLine("La suma del array es: {0}", x);
            Console.ReadKey();
        }