Ejemplo n.º 1
0
 private void button2_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Division(textBox1.Text, textBox2.Text);
 }
Ejemplo n.º 2
0
 private void button3_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Potencia(textBox1.Text, textBox2.Text);
 }
Ejemplo n.º 3
0
 private void button1_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Producto(textBox1.Text, textBox2.Text);
 }