首页 > 其他 > 详细

随机数类

时间:2016-03-12 17:20:50      阅读:236      评论:0      收藏:0      [点我收藏+]

随机数类        Random            

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

    double a = ran.Next(10);            

    int b = ran.Next(s.Length);          

    Console.WriteLine(a);

练习

            随机出验证码,对照输入,判断是否正确
            string s = "abcdefghijklmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789";
            Random ran = new Random();
            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("输入正确!");
            }
            else
            {
                Console.WriteLine("输入错误!");
            }
            Console.ReadLine();
            Console.Clear();
            Console.WriteLine("123");

 

           输入验证码

            string s = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
            Random ran = new Random();
            for (; ; )
            {
                string a = "";
                for (int i = 1; i <= 4; i++)
                {
                    a += s.Substring(ran.Next(s.Length), 1);
                }

                Console.WriteLine(a);

                Console.WriteLine("请输入验证码:");
                string b = Console.ReadLine();
                if (b.ToLower() == a.ToLower())
                {
                    Console.WriteLine("输入正确");
                    break;
                }
                else
                {
                    Console.Clear();
                    Console.WriteLine("输入错误");
                }
            }

 

随机数类

原文:http://www.cnblogs.com/yy01/p/5269306.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!