2012年8月5日 星期日

Java 亂數

import java.lang.Math;

Math.random():
  Returns a double value with a positive sign, greater than or equal to 0.0 and less than 1.0.

整數 X ~ Y 之間的亂數

(int)(Math.random()*(Y-X+1))+X

沒有留言:

熱門文章