📅  最后修改于: 2022-03-11 14:44:51.867000             🧑  作者: Mango
std::random_device rd;
std::mt19937 e{rd()}; // or std::default_random_engine e{rd()};
std::uniform_int_distribution dist{1, 5};
// get random numbers with:
dist(e);