Maison > Questions et réponses > le corps du texte
Par exemple, je souhaite utiliser Math.random() pour obtenir des nombres aléatoires dans les deux plages de -20~-10 et 10~20. Existe-t-il la solution la plus simple ? Par exemple, cela peut-il être fait sans instruction if ? Merci à tous d'avoir dissipé la confusion.
phpcn_u15822017-07-05 10:46:41
(Math.floor(Math.random() * (20 - 10 + 1)) + 10) * (Math.random() < 0.5 ? -1 : 1)
为情所困2017-07-05 10:46:41
Math.random() * (max - min) + min;
Voir les détails
Modification :
(Math.random() * (max - min) + min)*(Math.random()<0.5?1:-1);
欧阳克2017-07-05 10:46:41
function rand(min, max) {
if ( min >= max ) {
return;
}
return Math.floor(min + (max - min+1) * Math.random());
}
Il s'agit de prendre un entier dans une plage