Advertisement
tiskowdaknife

Untitled

Oct 29th, 2023
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.69 KB | None | 0 0
  1. Imports System.Runtime.Remoting.Services
  2.  
  3. Module Module1
  4.  
  5.     Sub Main()
  6.         Dim score As Integer
  7.         Dim grade As String
  8.  
  9.         Console.Write("Enter ur score = ")
  10.         score = Console.ReadLine()
  11.  
  12.         If score >= 0 And score <= 100 Then
  13.  
  14.             If score >= 80 Then
  15.                 grade = "Xellent"
  16.             ElseIf score >= 60 Then
  17.                 grade = "u did goot"
  18.             Else
  19.                 grade = "better luck next time"
  20.             End If
  21.  
  22.         Else
  23.             grade = "go succ yo mum"
  24.         End If
  25.  
  26.         Console.WriteLine(grade)
  27.         Console.ReadKey()
  28.  
  29.         MsgBox("congrats neverthel,ess")
  30.  
  31.  
  32.     End Sub
  33.  
  34. End Module
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement