博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
产生随机数
阅读量:6213 次
发布时间:2019-06-21

本文共 527 字,大约阅读时间需要 1 分钟。

//Leng 随机数的子长 public string CreateRnd(int Leng)        {            string Ar1 = "A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9";            string[] ListAr = Ar1.Split(',');            Random RD = new Random();            int rnd = 0;            string strRnd = "";            for (int j = 1; j < Leng; j++)            {                rnd = RD.Next(0, ListAr.Length);                strRnd += ListAr[rnd];            }            return strRnd;        }

 

转载于:https://www.cnblogs.com/Gorann/p/5400636.html

你可能感兴趣的文章
我的友情链接
查看>>
求职之我见
查看>>
【转】牛逼闪闪的Ruby迭代器
查看>>
Windows 8 企业部署系列之(八)
查看>>
Zend Studio 主題更改
查看>>
echarts 设置地图默认缩放比例 尺寸
查看>>
PHP内存池中的存储层
查看>>
PHP开发APP接口1——APP接口简介
查看>>
家用nas的过去现在和未来--2008n年
查看>>
Linux安装Zend Guard 和 ioncube
查看>>
android点滴25:Fragment加载时犯的低级错误android.view.Infla...
查看>>
x264 slicetype 选定中的x264_lowres_context_init函数分析
查看>>
ListView使用方法
查看>>
收藏的文章
查看>>
【工具使用系列】关于 MATLAB Simulink Stateflow, 你需要知道的事
查看>>
uClibc库的交叉编译
查看>>
让spring mvc支持put请求
查看>>
一个简单的随机数方法,支持小数
查看>>
centos下yum安装ffmpeg
查看>>
给 Android 开发者的 RxJava 详解
查看>>