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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

Math.random()取值范围[0.000000-0.999999]

        Math.random()*100范围[0.0000-99.9999]
       
        (int)(Math.random()*100)范围[0-99]
       
        (int)(Math.random()*100+1)范围[1-100]


class Shu{

        public static void  main(String[] args){
        for(int i =1;i<=100;i++){
        Systme.out.println((int)(Math.random*100()+1));       
               
                }
        }
}

1 个回复

倒序浏览
Random.nextInt(100);//0-100不包括100
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马