2 回答
TA贡献1833条经验 获得超4个赞
使用取模运算符
但是,除以分数 (.05) 可能会产生不完美的结果,因此最好乘以 20 并检查是否有分数提醒(模数 1)。
@Thomas Sablik 的回答也有效,并解释了乘以 20。
const isPoint05 = x => x * 20 % 1 === 0;
const test = (...args) => args.forEach(x => console.log(x, isPoint05(x)));
test(6, 3.1, 4.05, 53.65, 3.254, 6.22, 7.77, 7.33);
为了说明分数除法的挑战(取决于 JavaScript 实现,我在 chrome 上得到 0.049999999999999614):
console.log(7 % 0.05);
TA贡献1859条经验 获得超6个赞
您可以将数字乘以 20 并四舍五入:
if (Math.round(x * 20) !== x * 20) {
// not counted in 0.05 steps, eg. 1.234
} else {
// counted in 0.05 steps, eg. 1.25
}
此 if 语句检查“这些数字是否在小数点后有 2、1 或没有数字,并且以 0.05 步计算”,因为以 0.05 步计算的数字乘以 20 是整数(Math.round(x * 20) !== x * 20为 false),例如:
0.05 * 20 = 1
1.25 * 20 = 25
和其他数字不是整数(Math.round(x * 20) !== x * 20是真的),例如:
0.04 * 20 = 0.8
1.251 * 20 = 25.2
但是将这个 if 语句与 with 一起使用是一个坏主意,因为生成太多其他Math.random数字的可能性很高,以至于递归会导致堆栈溢出。Math.random
更好的方法是生成您想要的数字
x = Math.round(Math.random() * 20 * 100) / 20
添加回答
举报