标签:[] 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); } }
标签:[] style div stat com 最大 rand color log
原文地址:http://www.cnblogs.com/qingyundian/p/7635403.html