• 第六次作业 修改期中作业


    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Random;

    public class Game {
    ArrayList choujiang;
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    Game g = new Game();
    g.deal();
    System.out.println("一等奖获得者:");
    g.sj(1);
    System.out.println(" ");
    System.out.println("二等奖获得者:");
    g.sj(5);
    System.out.println(" ");
    System.out.println("三等奖获得者:");
    g.sj(8);
    System.out.println("");

    }
    public void deal(){
    	if(choujiang == null){
    		choujiang = new ArrayList<Integer>();
    		for(int i=1;i<=2000;i++){
    			choujiang.add(i);
    		}
    	}
    	Collections.shuffle(choujiang);
    }
    public void sj(int n){
    	Random ran1 = new Random(2000);
        
        for (int i = 0; i < n; i++) {
        	int index = ran1.nextInt(choujiang.size());
            System.out.print(choujiang.get(index)+"	");
            choujiang.remove(index);
           
        }
    
    }
    

    }

  • 相关阅读:
    第52周二Restful
    第52周一
    第51周日
    第51周六
    第51周五
    第51周四
    第51周三
    第51周二
    第51周一
    第50周日
  • 原文地址:https://www.cnblogs.com/jxfcc/p/5484531.html
Copyright © 2020-2023  润新知