美文网首页
2018-11-14

2018-11-14

作者: be1058558528 | 来源:发表于2018-11-14 22:41 被阅读0次

练习1:

要求用户输入用户名和密码,只要不是admin、888888就一直提示用户名或密码错误,请重新输入

static void Main(string[] args)

        {

            string user = "";

            string key = "";

            do

            {

                Console.WriteLine("请输入用户名");

                user = Console.ReadLine();

                Console.WriteLine("请输入密码");

                key = Console.ReadLine();

                if (user != "admin" || key != "888888")

                {

                    Console.WriteLine("用户名或密码错误");

                }

            } while (user != "admin" || key != "888888");

            Console.ReadKey();

        }

相关文章

网友评论

      本文标题:2018-11-14

      本文链接:https://www.haomeiwen.com/subject/qghdfqtx.html