A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Over_Mstuang 中级黑马   /  2015-8-6 22:58  /  183 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

自学Random类,然后实现获取一个1-100之间的随机数
                A: int num = (int)(Math.random()*100)+1
                B: Random r = new Random();
                   int num = r.nextInt(100)+1;

import java.util.Random;

class RandomDemo
{
        public static void main(String[] args)
        {
                //创建对象
                //Random r = new Random();
                Random r = new Random(17);

                //调用功能
                //System.out.println(r.nextInt());
                /*
                for(int x=0; x<1000; x++)
                {
                        System.out.println(r.nextInt(100));
                }
                */

                for(int x=0; x<10; x++)
                {
                        int num = r.nextInt(100);
                        System.out.println(num);
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马