zoukankan      html  css  js  c++  java
  • *生成器--36选7 无重复(案例)

    package suijishu;
    
    import java.util.Random;
    
    public class suijishu{
    
    public static void main(String[] args){
        //36选7
        int[] caiPiao = new int[7];
        Random rand = new Random();
        
        //生成
        
    
        for(int i =0;i<7;i++)//生成7个随机数.i代表正在生成第几个数
        {
            int temp = rand.nextInt(36);
            temp++;          //生成随机数
            //解决重复问题
            int chongFuCiShu =0;   //检索数组,记录重复次数
            for(int j = 0;j<7;j++){
                if(temp == caiPiao[j]){ //检查是否有重复,有重复就记录chongFuCiShu++;
                    chongFuCiShu++;
                }
            }
            
            if(chongFuCiShu == 0){
                caiPiao[i]=temp;
            }
            else{
                i--;
            }
            //System.out.print(temp+"	");
            for(int l =0;l<caiPiao.length;l++)
            {//显示
            
        }
            System.out.print(caiPiao[i]+"	");}
    }    
    }

  • 相关阅读:
    钟国晨160809323(作业5)
    12
    11
    第九次
    8作业
    第七次作业
    6
    林昊5
    计算机网络原理与应用笔记 3/29
    计算机网络原理与应用笔记 3/22
  • 原文地址:https://www.cnblogs.com/0927wyj/p/5028625.html
Copyright © 2011-2022 走看看