fork download
  1. ' Autor : HernĂ¡n Toro
  2. ' Lenguaje : VB.Net
  3. ' Descripcion : este programa calcula promedio de dos notas
  4.  
  5. Imports System
  6.  
  7. Public Class Test
  8. Public Shared Sub Main()
  9. Dim nombre As String
  10. Dim calif1 As Double
  11. Dim calif2 As Double
  12. Dim notaFinal As Double
  13. Dim mensaje As String
  14.  
  15. System.Console.Write("Entre nombre: ")
  16. nombre = Console.ReadLine
  17. System.Console.Write("Entre nota 1: ")
  18. calif1 = Console.ReadLine
  19. System.Console.Write("Entre nota 2: ")
  20. calif2 = Console.ReadLine
  21.  
  22. notaFinal = (calif1 + calif2) / 2
  23.  
  24. If (notaFinal >= 60) Then
  25. mensaje = " Aprobo"
  26. Else
  27. mensaje = " Reprobo"
  28. End If
  29. System.Console.WriteLine(nombre & " " & notaFinal & mensaje)
  30. 'System.Console.Write(" ")
  31. 'System.Console.Write(notaFinal)
  32. 'System.Console.WriteLine(mensaje)
  33. End Sub
  34. End Class
  35.  
Success #stdin #stdout 0.09s 25688KB
stdin
Pedro
56
70
stdout
Entre nombre: Entre nota 1: Entre nota 2: Pedro 63 Aprobo