mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 16:43:08 +02:00
11 lines
220 B
C++
11 lines
220 B
C++
|
|
#include <random>
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
std::random_device rd;
|
||
|
|
std::uniform_real_distribution<double> dist(1.0, 10.0);
|
||
|
|
|
||
|
|
for (int i=0; i<16; ++i)
|
||
|
|
std::cout << dist(rd) << "\n";
|
||
|
|
}
|