javascript - Comment obtenir un nombre aléatoire dans une plage symétrique en JS?
淡淡烟草味
淡淡烟草味 2017-07-05 10:44:41
0
4
841

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.

淡淡烟草味
淡淡烟草味

répondre à tous(4)
phpcn_u1582
(Math.floor(Math.random() * (20 - 10 + 1)) + 10) * (Math.random() < 0.5 ? -1 : 1)
某草草
function getRandom(min,max){
    return Math.random()*(max-min)+min;
}
为情所困
Math.random() * (max - min) + min;

Voir les détails


Modification :

(Math.random() * (max - min) + min)*(Math.random()<0.5?1:-1);
学霸
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

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal