Пример #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Division(textBox1.Text, textBox2.Text);
 }
Пример #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Potencia(textBox1.Text, textBox2.Text);
 }
Пример #3
0
 private void button1_Click(object sender, EventArgs e)
 {
     textBox3.Text = Operaciones.Producto(textBox1.Text, textBox2.Text);
 }