//介绍Random类,有两种:java.util.Random或者是java.lang.Math类中的random()方法
import java.util.Random;
public class RandomTest
{
public static void main(String[] args)
{ //第一种random,得出的范围是从0开始到数字的结尾,但不包括最后一个数
Random random = new Random();
for(int i = 0; i < 50; i++)
{
//System.out.println(random.nextInt(41) + 10);
//第二种random,得出的范围是0.0到1.0(不包括1.0)
double result = Math.random();
result *= 41;
int result2 = (int)result;
result2 += 10;
System.out.println(result2);
}
}
}