Tema: Realizar los siguientes ejercicios en Visual Basic Nombre: Pamela Buenaño 1.- Factorial de un número Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim n, i, f As Integer n = TextBox1.Text i=1 f=1 Do While (i <= n) f=f*i i=i+1 Loop TextBox2.Text = f End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click TextBox1.Text = " " TextBox2.Text = " " End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click End End Sub End Class 1.- Potencia de un número Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a, ex, i, p As Integer a = TextBox1.Text ex = TextBox2.Text i=1 p=1 Do While (i <= ex) p=p*a i=i+1 Loop TextBox3.Text = p End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click TextBox1.Text = " " TextBox2.Text = " " TextBox3.Text = " " End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click End End Sub End Class