获得指定范围内的随机值

 
int  getRandom( int  min,  int  max) {

    
return (int)(Math.random()*(max-min+1)) + min;

}
 

你可能感兴趣的:(获得指定范围内的随机值)