ActionScript 取亂數
2009/12/23
紀錄一下不然每次忘記都還要再重想一下..
Flex 取得某範圍亂數
程式function 如下:
public function GetRangeRandom(min:Number,max:Number):Number
{
return Math.round(Math.random()*(max-min))+min;
}
ex.我要如何取得 10 到 100的亂數 即可以呼叫
GetRangeRandom(10,100) ;
很常忘記要重查....XD...
標籤:
ActionScript,
Flex
|
This entry was posted on 下午6:34
and is filed under
ActionScript
,
Flex
.
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.
訂閱:
張貼留言 (Atom)
1 意見:
呵呵~~沒有啦..只是單純每次忘記都要在查一下語法..
每一個語言取亂數都差不多..
張貼留言