#include <iostream>
#include <random>
#include <iomanip>
int main() {
std::random_device rd;
std::default_random_engine eng(rd());
std::uniform_real_distribution<float> dist(0.0, 1.1);
for (int i = 0; i < 7; i++) {
std::cout << std::setprecision(6) << dist(eng) << "\n";
}
return 0;
}
/*
run:
0.60879
0.839633
0.904362
0.919533
0.68299
0.516155
0.412744
*/