ceil()向上取整與round()逢五進一
Math.ceil(Math.random()*5)
Math.round(Math.random()*(5-1)+1)
alert(Math.round(Math.random()*(y-x)+x)); //x~y
alert(Math.round(Math.random()*80+20))//20~100
alert(Math.round(Math.random()*10+10))//10~20
alert(Math.round(Math.random()*5+5)) //5~10
alert(Math.round(Math.random()*10))//0~10
alert(Math.round(3.5))