Random Numbers
Visual Basic
4
Posts
4
Posters
0
Views
1
Watching
-
How would I write a program and get a random number
-
How would I write a program and get a random number
Just Google "Random Numbers" and "VB.NET", you'll get tons of hits. No random number is truly "random", and random number generation algorithms can vary from extremely simple to extremely complex, depending on how "random" you really need your numbers to be. I'm sure you'll find something that suits your needs.
-
How would I write a program and get a random number
-
How would I write a program and get a random number
Dim myRNG As New Random() Dim newNumber As Integer = myRNG.Next(lowerBound, upperBound)
But I vaguely remember telling you this already. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome