美文网首页
2018-10-31第四题

2018-10-31第四题

作者: 额丶丶丶 | 来源:发表于2018-10-31 17:04 被阅读0次

效果

代码

{

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

            string name = Console.ReadLine();

            if (name!="admin")

            {

                Console.WriteLine("用户名错误请关闭重试");

            }

            else

            {

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

                string mima = Console.ReadLine();

                if (mima=="mypass" )

                {

                    Console.WriteLine("登录成功");

                }

                else

                {

                    Console.WriteLine("密码错误登录失败请重试");

                }

            }

            Console.ReadKey();

相关文章

网友评论

      本文标题:2018-10-31第四题

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