Option
Explicit On
Public
Class Form1
REM Declaracion de variables
Dim
nota1, nota2, nota3, pomedio As Single
REM
Contenido del formulario
Private
Sub Form1_Load(ByVal sender AS System.Object, ByVal e As System.EventArgs)
Handles
MyBase.Load
Me.Text=”Calculo promedio de 3
notas sumativas”
ButtonCalcular.Text=”Calcular el
promedio”
Label1. Text=”Introduzca la primera nota”
Label2. Text=”Introduzca la segunda nota”
Label3. Text=”Introduzca la tercera nota”
End Sub
REM Calculo y muestras resultados
Private
Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)Handles
ButtonCalcular.Click
Nota1= Val
(TextBox1.Text)
Nota2= Val
(TextBox2.Text)
Nota3= Val
(TextBox3.Text)
Promedio= (Nota1 +
Nota2 + Nota3)/3
LabelResultados.Font=New Font(“Arial”, 10, FontStyle.Bold)
LabelResultados.TextAlign=ContentAlignment.MiddleCenter
LabelResultados.Text=”El
promedio es de “&promedio&”
End Sub
No hay comentarios:
Publicar un comentario