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

随机数

时间:2017-08-14 18:01:23      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:array   i++   tran   code   void   color   static   oid   pre   

public class TestRandom {
    public static void main(String[] args) {
        
        int a[]=new int[10];
        int temp;
        for (int i = 0; i < a.length; i++) {
            a[i]=(int)(Math.random()*100);
            
        }
        for (int i = 0; i < 10; i++) {
            for (int j = i+1; j < 10; j++) {
                if (a[i]>a[j]) {
                    temp=a[i];
                    a[i]=a[j];
                    a[j]=temp;
                }
            }
        }
        //for (int i = 0; i < 10; i++) {
            System.out.println(a[9]+" ");
        //}
    }
    
/*    Arrays.sort()???????*/
}

 

随机数

标签:array   i++   tran   code   void   color   static   oid   pre   

原文地址:http://www.cnblogs.com/lc-java/p/7359113.html

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