如果是取[0,10]的整数,标准的方法就是Math.floor(Math.random()*(10+1))
如果是取[0,10)的整数,标准的方法是Math.floor(Math.random()*10)
用ceil无论怎么处理都有问题的。
如果是取(0,10]的整数,标准的方法就是Math.ceil(Math.random()*10),这时用floor怎么都会有问题的。
如果是取[0,10]的整数,标准的方法就是Math.floor(Math.random()*(10+1))
如果是取[0,10)的整数,标准的方法是Math.floor(Math.random()*10)
用ceil无论怎么处理都有问题的。
如果是取(0,10]的整数,标准的方法就是Math.ceil(Math.random()*10),这时用floor怎么都会有问题的。