Advertisement
Guest User

promedio

a guest
Sep 2nd, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Public Class frmEj3
  2.  
  3. Private Sub Label5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblC5.Click
  4.  
  5. End Sub
  6.  
  7. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  8. Dim a, b, c, d, r As Double
  9. a = txtC1.Text
  10. b = txtC2.Text
  11. c = txtC3.Text
  12. d = txtC4.Text
  13. r = a + b + c + d
  14. r = r / 4
  15. txtProm.Text = r
  16. If r >= 8 Then
  17. txtRip.Text = "Exento"
  18. ElseIf r >= 6 Then
  19. txtRip.Text = "Aprobado"
  20. Else
  21. txtRip.Text = "Reprobado"
  22.  
  23.  
  24. End If
  25.  
  26. End Sub
  27. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement