码迷,mamicode.com
首页 > 其他好文 > 详细

3月12日 随机数类 Random

时间:2016-03-12 13:03:51      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

Random:

Random ran=new Random();//初始化

int a=ran.Next(10);

Console.WhiteLine(a);

Console.ReadLine();

//随机出验证码,对照输入,判断是否正确;            
            string s = "abcdefghijklmnopqistuvwxyzABCDEFGHIJKLMNOPQISTUVWXYZ0123456789";
            Random ran = new Random();
            for (; ; )
            {
                string biao = "";
                for (int i = 1; i <= 4; i++)
                {
                    biao += s.Substring(ran.Next(s.Length), 1);
                }
                Console.WriteLine(biao);
                Console.Write("请输入验证码:");
                string shu = Console.ReadLine();
                if (shu.ToLower() == biao.ToLower())
                {
                    Console.WriteLine("输入正确");
                    break;
                }
                else
                {
                    Console.Clear();
                    Console.WriteLine("输入错误!");

                }
            }
            Console.ReadLine();

 

3月12日 随机数类 Random

标签:

原文地址:http://www.cnblogs.com/dongqiaozhi/p/5268260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!