1.long s=Math.round(Math.Random()*100);
产生0-100之间的随机数,运用于J2SE中
2.int s=new Random().nextInt(100) +1;
产生1-100之间的随机数,利用Java.util包里面的Random类产生随机数。