Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. If (score >= 90) Then
  2.   MessageBox.Show("Grade is A", "A")
  3. Else
  4.   If (score >= 80) Then
  5.     MessageBox.Show("Grade is B", "B")
  6.   Else
  7.     If (score >= 70) Then
  8.       MessageBox.Show("Grade is C", "C")
  9.     End If
  10.   End If
  11. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement