[已解决]如何获取1-5的随机整数?

请问如何获取1-5的随机整数?谢谢!

自己回答:Math.floor(Math.random() * 5+1);

请问 既然 Math.random() 能获取0-1之间的随机数,为什么还要有cc.random0To1() ?

/**

  • returns a random float between 0 and 1
  • @return {Number}
  • @function
    */
    cc.random0To1 = Math.random;

估计是希望看起来更直观吧。。

好吧,谢谢!!!!

Math.ceil(Math.random() * 5)

谢谢!!!

, 你这个值


— Begin quote from ____

引用第1楼蒸馏水泛滥于2015-01-03 19:57发表的 :
自己回答:Math.floor(Math.random() * 5+1); http://www.cocoachina.com/bbs/job.php?action=topost&tid=279781&pid=1212062

— End quote