math.random与Random产生随机数的方法
1.产生0-10之间的随机数 (math.random)public static void main(String[] args) { for(int i=0;i int n=(int)Math.round(Math.random()*10); System.out.println(n); }}2. 产生1-10之间的随机数(math.random)pu