random in c++
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
int num;
srand(time(0));
num = rand() % 10 + 1;
cout << num << endl;
}
random in c++
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
int num;
srand(time(0));
num = rand() % 10 + 1;
cout << num << endl;
}
c++ random number
#include <random>
typedef std::mt19937 MyRNG; // the Mersenne Twister with a popular choice of parameters
uint32_t seed_val; // populate somehow
MyRNG rng; // e.g. keep one global instance (per thread)
void initialize()
{
rng.seed(seed_val);
}
int main() {
std::uniform_int_distribution<uint32_t> uint_dist; // by default range [0, MAX]
std::uniform_int_distribution<uint32_t> uint_dist10(0,10); // range [0,10]
std::normal_distribution<double> normal_dist(mean, stddeviation); // N(mean, stddeviation)
while (true){
std::cout << uint_dist(rng) << " "
<< uint_dist10(rng) << " "
<< normal_dist(rng) << std::endl;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us