Advertisement
stefan1919

DoWhile

Oct 13th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module Module1
  2.  
  3.     Sub Main()
  4.         Dim password As String = String.Empty
  5.         Do While password <> "SHAZAM"
  6.             password = Console.ReadLine()
  7.             password = password.ToUpper()
  8.         Loop
  9.         Console.WriteLine("vIARNA pAROLA")
  10.         Console.ReadLine()
  11.     End Sub
  12.  
  13. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement