random number from -9 to 9 in C++(C ++中从-9到9的随机数)
问题描述
只是想知道,如果我有以下代码:
just wondering, if I have the following code:
int randomNum = rand() % 18 + (-9);
这会创建一个从 -9 到 9 的随机数吗?
will this create a random number from -9 to 9?
推荐答案
不,不会的.您正在寻找:
No, it won't. You're looking for:
int randomNum = rand() % 19 + (-9);
-9 和 +9 之间有 19 个不同的整数(包括两者),但 rand() % 18
只给出了 18 种可能性.这就是为什么你需要使用 rand() % 19
.
There are 19 distinct integers between -9 and +9 (including both), but rand() % 18
only gives 18 possibilities. This is why you need to use rand() % 19
.
这篇关于C ++中从-9到9的随机数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C ++中从-9到9的随机数
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 近似搜索的工作原理 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01