Random and randomize | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 3

Random and randomize

How does random and randomize work in c++?

15th Dec 2017, 5:16 PM
RR2001
RR2001 - avatar
1 Antwort
+ 7
To generate a random number we use the rand() function. This will produce a result in the range 0 to RAND_MAX, where RAND_MAX is a constant defined by the implementation. These are not standard C or C++ functions. In standard C and C++ there are srand and rand which are part of the <stdlib.h> header. These functions are probably part of Turbo C++ to improve compatibility with Turbo Pascal, where randomize and random are the default random number generator. As you can't generate a truly random integer with the rand() function alone you have to seed it by including the time library: #include <time.h> including the c standard library: #include <cstdlib> and then the number generator: srand(time(NULL)); int random = rand() % 100 + 1;
15th Dec 2017, 5:28 PM
GAWEN STEASY
GAWEN STEASY - avatar