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();
        }
    }

  • 相关阅读:
    HTML页面跳转的5种方法
    ngixn配置
    redis秒杀
    php 设计模式
    MySQL之事务的四大特性
    [置顶] JNI之java传递数据给c语言
    jQuery 快速结束当前动画
    编绎OpenJDK
    CF#231DIV2:A Good Number
    CF#213DIV2:B The Fibonacci Segment
  • 原文地址:https://www.cnblogs.com/lkh960317/p/5498943.html
Copyright © 2011-2022 走看看