zoukankan      html  css  js  c++  java
  • Java第六次作业

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Random;
    import java.util.*;
    public class choujiang {
        private ArrayList<Integer> cards;
    
        public void deal(int num){
            if (cards==null){
                cards=new ArrayList<Integer>();
                for(num=1;num<=100;num++){
                    cards.add(num);
                }
            }
            Collections.shuffle(cards);
        }
        public void draw(){
           Random ra=new Random();
            int s =ra.nextInt(cards.size());
            System.out.println("一等奖:"+ cards.get(s));
            cards.remove(cards.get(s));
            Collections.shuffle(cards);
            
            for(int i=0;i<2;i++){
                int stwo=ra.nextInt(cards.size());
                System.out.println("二等奖:"+ cards.get(stwo));
                cards.remove(cards.get(stwo));
                }
            Collections.shuffle(cards);
                for(int j =0;j<3;j++){
                    int sthree =ra.nextInt(cards.size());
                    System.out.println("三等奖:"+cards.get(sthree));
                    cards.remove(cards.get(sthree));
                }
    
             }
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            choujiang c = new choujiang();
            c.deal(0);
            c.draw();
        }
    }

  • 相关阅读:
    [TCP/IP]TCP的三次握手和四次挥手

    思考
    jQuery完整的事件委托(on())
    jQuery队列动画
    jQuery自定义动画
    jQuery淡入淡出
    jQuery滑动动画
    jQuery基本动画
    jQuery基础3
  • 原文地址:https://www.cnblogs.com/Mrsli/p/5486239.html
Copyright © 2011-2022 走看看