“Número aleatorio de CPP en el rango” Código de respuesta

Aleatorio en el rango c

#include <iostream>
#include <cstdlib>  //required for rand(), srand()
#include <ctime>    //required for time()
using namespace std;

int main() {
    srand(time(0));     //randomizing results... (using time as an input)
    
    const int totalNumbersGenerated = 30;
    const int minRange = 1, maxRange = 20;

    cout<<"\nPrinting "<<totalNumbersGenerated<<" random integer numbers (from "<<minRange<<" to "<<maxRange<<"):\n";
    
    for(int i=1;i<=totalNumbersGenerated;i++){
        //generating random number in specified range (inclusive)
        cout<<1+((rand () % maxRange) + minRange - 1)<<" ";
    }
    
    cout<<endl;
    return 0;
}
ALeonidou

C cómo generar un número aleatorio en un rango

min + ( std::rand() % ( max - min + 1 ) )
Chronoviser

Número aleatorio de CPP en el rango

int range = max - min + 1;
int num = rand() % range + min;
Habib

número aleatorio en un rango C

int random(int min, int max) {
    mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
    uniform_int_distribution<int> gen(min, max);
    int a = gen(rng);
    return a;
}
Abdallah Mohamed

C Número aleatorio dentro del rango

#include <iostream>
#include <random>
int main()
{
    std::random_device rd; // obtain a random number from hardware
    std::mt19937 gen(rd()); // seed the generator
    std::uniform_int_distribution<> distr(25, 63); // define the range

    for(int n=0; n<40; ++n)
        std::cout << distr(gen) << ' '; // generate numbers
}
Breakable Bird

Respuestas similares a “Número aleatorio de CPP en el rango”

Preguntas similares a “Número aleatorio de CPP en el rango”

Más respuestas relacionadas con “Número aleatorio de CPP en el rango” en C++

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código