EJERCICIO 2
Ejemplo utilizando la multiplicación.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim numero1 As Single
Dim numero2 As Single
Dim resultado As Single
numero1 = TextBox1.Text
numero2 = TextBox2.Text
resultado = numero1 + numero2
TextBox3.Text = CStr(resultado)
End Sub
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim numero1 As Single
Dim numero2 As Single
Dim resultado As Single
numero1 = TextBox1.Text
numero2 = TextBox2.Text
resultado = numero1 - numero2
TextBox3.Text = CStr(resultado)
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim numero1 As Single
Dim numero2 As Single
Dim resultado As Single
numero1 = TextBox1.Text
numero2 = TextBox2.Text
resultado = numero1 * numero2
TextBox3.Text = CStr(resultado)
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Dim numero1 As Single
Dim numero2 As Single
Dim resultado As Single
numero1 = TextBox1.Text
numero2 = TextBox2.Text
resultado = numero1 / numero2
TextBox3.Text = CStr(resultado)
End Sub
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Dim numero1 As Single
Dim numero2 As Single
Dim resultado As Single
numero1 = TextBox1.Text
numero2 = TextBox2.Text
resultado = numero1 + numero2
TextBox3.Text = ""
End Sub
End Class
No hay comentarios:
Publicar un comentario