将整数转换为长双精度
我必须创建一个长双随机生成器。我正在考虑线性同余生成器,因为我不需要高精度随机序列。但是如何将整数转换为 long double 呢?
I have to create a long double random generator. I am thinking about a linear congruential generator, because I don't need high precision random sequence. But how can I convert an integer to a long double?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
分配时就隐含了转换。 (用 gcc 测试):
...修改...
我担心扩展类型有些问题不能很好地工作,我创建了一个更彻底的测试:
The conversion is implied when assigned. (Tested with gcc):
... amended ...
I was concerned there was something about the extended types which don't work well, I created a more thorough test: