VB.NET (Web App)
PROJECT 2.1.2
Guess Number
For our projects we will use Microsoft Visual Studio 2019. It allows to create projects in different programming languages and on different platforms.
At the time of creating our resource, the functionality of New Visual Web Developer in Visual Studio 2022 has not been fully developed by the Microsoft team, so we will use Visual Studio 2019.
Download and install Visual Studio 2019 on your Personal Compiuter.
Download Visual Studio 2019 >>>
Our Online Simulator will help you to make the game "Guess Number".
Now a little theory for our project:
1. Random numbers
To create a random generator we will use the next code:
If TextBox1.Text = "" Then
Randomize()
TextBox1.Text = Int(Rnd() * 100) + 1
End If
Here, the Randomize() is for getting the different numbers each time. Without this line, every time we run the code, we will get the same random numbers (it means they will not be truly random).
Int(Rnd() * 100) is for getting random numbers from 0 to 99. After adding +1 we will get random numbers from 1 to 100.
We put the random generator code between if and End if because in the case of the web app when we click the button each time, the page will reload, so the number we have to guess will change while playing. To prevent this, we wrote the code that will generate a random number only if the textbox is empty:
If TextBox1.Text = ""
So after the random number is generated it will not change during the game.