这是关于本页答案的后续问题:
How to generate random double numbers with high precision in C++?
#include <iostream>
#include <random>
#include <iomanip>
int main()
{
std::random_device rd;
std::mt19937 e2(rd());
std::uniform_real_distribution<> dist(1, 10);
for( int i = 0 ; i < 10; ++i )
{
std::cout << std::fixed << std::setprecision(10) << dist(e2) << std::endl ;
}
return 0 ;
}
答案很好但我很难意识到如何将此代码的输出放在双变量中而不是将其打印到stdout
。任何人都可以帮忙吗?
感谢。
答案 0 :(得分:3)
你在实际精度和显示精度之间感到困惑 - 试试这个:
#include <iostream>
#include <random>
#include <iomanip>
int main()
{
std::random_device rd;
std::mt19937 e2(rd());
std::uniform_real_distribution<> dist(1, 10);
double v = dist(e2); // get a random double at full precision
std::cout << std::fixed << std::setprecision(10) << v << std::endl;
// display random double with 10 digits of precision
return 0;
}