“CPP -Zufallszahl im Bereich” Code-Antworten

Zufällig in Bereich 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 So generieren Sie eine Zufallszahl in einem Bereich

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

CPP -Zufallszahl im Bereich

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

Zufallszahl in einem Bereich 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 Zufallszahl innerhalb von Reichweite

#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

Ähnliche Antworten wie “CPP -Zufallszahl im Bereich”

Fragen ähnlich wie “CPP -Zufallszahl im Bereich”

Weitere verwandte Antworten zu “CPP -Zufallszahl im Bereich” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen