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

10个随机数求出最大者

时间:2017-10-07 19:35:52      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:[]   style   div   stat   com   最大   rand   color   log   

package com.swift;

import java.util.Random;

public class RandomMax {

    public static void main(String[] args) {
        int max=0;
        Random random=new Random();
        
        for(int i=0;i<10;i++) {
            int ran=random.nextInt(100)+1;//Random类生成0~99的随机数
            if(max<ran) {
                max=ran;
            }
            System.out.println(ran);
        }
        System.out.println("The most max number is:"+max);
    }
}

 

10个随机数求出最大者

标签:[]   style   div   stat   com   最大   rand   color   log   

原文地址:http://www.cnblogs.com/qingyundian/p/7635403.html

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