0% found this document useful (0 votes)
36 views1 page

Exercise 12

This code defines a number guessing game that generates a random secret number between 1 and 50. It tracks the number of guesses a player makes and provides feedback on whether their guess is too high, too low, or correct. It increments the guess count whenever the player's guess is incorrect and displays the current number of guesses.

Uploaded by

api-307845299
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Exercise 12

This code defines a number guessing game that generates a random secret number between 1 and 50. It tracks the number of guesses a player makes and provides feedback on whether their guess is too high, too low, or correct. It increments the guess count whenever the player's guess is incorrect and displays the current number of guesses.

Uploaded by

api-307845299
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Exercise #12

Public Class Form1


Const MIN As Integer = 1
Const Max As Integer = 50
Dim Guesses As Double = 1

Private Sub BnCheckGuess_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles BnCheckGuess.Click
Randomize()
Static SecretNumber As Integer = Int((Max - MIN + 1) * Rnd() + MIN)
Dim Guess As Integer
Label2.Text = Guesses

Guess = Val(Me.TxtPlayerGuess.Text)
If Guess = SecretNumber Then 'correct
Me.LblMessage.Text = "You Guessed It!"
ElseIf Guess < SecretNumber Then 'Low Num
Me.LblMessage.Text = "Too Low."
ElseIf Guess > SecretNumber Then 'High Num
Me.LblMessage.Text = "Too High"
End If
If Guess < SecretNumber Then 'Low Num
Guesses = Guesses + 1
End If
If Guess > SecretNumber Then 'High Num
Guesses = Guesses + 1
End If
End Sub
End Class

You might also like