#include
#include
#include
using namespace std;
int main() {
uniform_real_distribution<> urd(0, 1);
mt19937_64 gen{ random_device()() };
auto rnd = urd(gen);
cout.setf(ios::fixed);
cout.precision(15);
cout << rnd << '\n';
system("pause > nul");
}
#include <iostream>
#include <stdio.h>
#include <conio.h>
using namespace std;
int main()
{
setlocale(0, ".1251");
int rands=1;
double a=0, x=0, c=0, m=0;
int max = 1, min = 0, n;
cout << "Введите размер матрицы ";
cin >> n;
cout << "Введите значение a [0;1) для конгратуэтной функции: ";
cin >> a;
cout << "Значение c [0;1) ";
cin >> c;
cout << "Значение x [0;1) ";
cin >> x;
cout << "Введите m >= 2: ";
cin >> m;
double *arr = new double [n];
rands = (a * x + c) % m;
for (int i = 0;i<n;i++)
{
rands = (a * rands + c)%m;
arr[i] = (double)rands / m;
cout <<arr[i] << " ";
}
_getch();
}
подчерниваются а, х, с, m, в этой строке rands = (a * x + c) % m;
и в этой rands = (a * rands + c)%m; а, с , m