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(); }
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(); }
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(); }
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(); }