<SPAN style="FONT-SIZE: 18px">1.Math.random(); 結果為0-1間的一個隨機數(包括0,不包括1) </SPAN>
Math.random(); 結果為0-1間的一個隨機數(包括0,不包括1) [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
2.Math.floor(num); 參數num為數值,函數結果為num的整數部分(傳回小於等於n的最大整數)。 </SPAN>
Math.floor(num); 參數num為數值,函數結果為num的整數部分(傳回小於等於n的最大整數)。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
3.Math.round(num); 參數num為一個數值,函數結果為num四捨五入後的整數。 </SPAN>
Math.round(num); 參數num為一個數值,函數結果為num四捨五入後的整數。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
4.Math.ceil(n); 傳回大於等於n的最小整數。 </SPAN>
Math.ceil(n); 傳回大於等於n的最小整數。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
5.Math.ceil(Math.random()*10);時,主要取得1到10的隨機整數,取0的幾率極小。 </SPAN>
Math.ceil(Math.random()*10);時,主要取得1到10的隨機整數,取0的幾率極小。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
6.Math.round(Math.random());可均衡取得0到1的隨機整數。 </SPAN>
Math.round(Math.random());可均衡取得0到1的隨機整數。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
7.Math.round(Math.random()*10);時,可基本均衡取得0到10的隨機整數,其中取得最小值0和最大值10的幾率少一半。 </SPAN>
Math.round(Math.random()*10);時,可基本均衡取得0到10的隨機整數,其中取得最小值0和最大值10的幾率少一半。 [html] view plaincopyprint?
<SPAN style="FONT-SIZE: 18px">
8.Math.floor(Math.random()*10);時,可均衡取得0到9的隨機整數。 </SPAN>