Ejemplo 1: aleatorio en c ++
v1 =rand()%100;// v1 in the range 0 to 99
v2 =rand()%100+1;// v2 in the range 1 to 100
v3 =rand()%30+1985;// v3 in the range 1985-2014
Ejemplo 2: número aleatorio en c ++
/* rand example: guess the number */#include /* printf, scanf, puts, NULL */#include /* srand, rand */#include /* time */intmain()int iSecret, iGuess;/* initialize random seed: */srand(time(NULL));/* generate secret number between 1 and 10: */
iSecret =rand()%10+1;doprintf("Guess the number (1 to 10): ");scanf("%d",&iGuess);if(iSecret<iGuess)puts("The secret number is lower");elseif(iSecret>iGuess)puts("The secret number is higher");while(iSecret!=iGuess);puts("Congratulations!");return0;
Ejemplo 3: c ++ rand include
#include
Ejemplo 4: rand () c ++
v1 =rand()%100;// v1 in the range 0 to 99 --Credit goes to Clever cowfish
v2 =rand()%100+1;// v2 in the range 1 to 100
v3 =rand()%30+1985;// v3 in the range 1985-2014
Ejemplo 5: rand () c ++
#include #include #include intmain()
std::srand(std::time(nullptr));// use current time as seed for random generatorint random_variable = std::rand();
std::cout <<"Random value on [0 "<< RAND_MAX <<"]: "<< random_variable <<'n';// roll 6-sided dice 20 timesfor(int n=0; n !=20;++n)int x =7;while(x >6)
x =1+ std::rand()/((RAND_MAX +1u)/6);// Note: 1+rand()%6 is biased
std::cout << x <<' ';
Ejemplo 6: generador de números aleatorios c
rand()%(maxlimit +1- minlimit)+ minlimit;
Te mostramos reseñas y puntuaciones
Acuérdate de que tienes la capacidad de glosar tu experiencia si te fue preciso.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)