取一定范围内的随机数!

//取5到100之间的随机数

public class Test
{
public static void main(String[] args)
{
int random = 5 + (int)(Math.random()*(100-5+1));
System.out.println(random);
}
}

你可能感兴趣的:(取一定范围内的随机数!)