Este grupo de redactores ha estado mucho tiempo investigando soluciones a tus preguntas, te ofrecemos la resolución así que deseamos resultarte de gran ayuda.
Ejemplo 1: hacer números aleatorios 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 2: c++ aleatorio
#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';
Reseñas y puntuaciones
Tienes la posibilidad recomendar esta noticia si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)