fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. Dim nombre As String
  6. Dim calif1 As Double
  7. Dim calif2 As Double
  8. Dim notaFinal As Double
  9. Dim mensaje As String
  10.  
  11. nombre = Console.ReadLine
  12. calif1 = Console.ReadLine
  13. calif2 = Console.ReadLine
  14.  
  15. notaFinal = (calif1 + calif2) / 2
  16.  
  17. If (notaFinal >= 60) Then
  18. mensaje = " Aprobo"
  19. Else
  20. mensaje = " Reprobo"
  21. End If
  22. System.Console.Write(nombre)
  23. System.Console.Write(" ")
  24. System.Console.Write(notaFinal)
  25. System.Console.WriteLine(mensaje)
  26. End Sub
  27. End Class
  28.  
Success #stdin #stdout 0.09s 25728KB
stdin
Pedro
56
70
stdout
Pedro 63 Aprobo