Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Guess-the-number/Visual-Basic-.NET/guess-the-number.vb
Normal file
24
Task/Guess-the-number/Visual-Basic-.NET/guess-the-number.vb
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
Module Guess_the_Number
|
||||
Sub Main()
|
||||
Dim random As New Random()
|
||||
Dim secretNum As Integer = random.Next(10) + 1
|
||||
Dim gameOver As Boolean = False
|
||||
Console.WriteLine("I am thinking of a number from 1 to 10. Can you guess it?")
|
||||
Do
|
||||
Dim guessNum As Integer
|
||||
Console.Write("Enter your guess: ")
|
||||
|
||||
If Not Integer.TryParse(Console.ReadLine(), guessNum) Then
|
||||
Console.WriteLine("You should enter a number from 1 to 10. Try again!")
|
||||
Continue Do
|
||||
End If
|
||||
|
||||
If guessNum = secretNum Then
|
||||
Console.WriteLine("Well guessed!")
|
||||
gameOver = True
|
||||
Else
|
||||
Console.WriteLine("Incorrect. Try again!")
|
||||
End If
|
||||
Loop Until gameOver
|
||||
End Sub
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue