码迷,mamicode.com
首页 > 其他好文 > 详细

两个随机数实例

时间:2014-08-14 16:25:28      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   java   os   io   ar   cti   

/*
import java.util.Random;
public class random_1{
    public static void main(String[] args) {
        Random r=new Random();
        int a=r.nextInt();
        System.out.print("随机数为:"+a);
    }
}
*/
 
//以下程序与上程序效果一样
public class random_1{
    public static void main(String[] args) {
        int r=(int)(Math.random()*10);
        System.out.print(r);
    }
}

两个随机数实例,布布扣,bubuko.com

两个随机数实例

标签:des   style   color   java   os   io   ar   cti   

原文地址:http://www.cnblogs.com/javalittleman/p/3912656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!