C#第五次作业02

#作业要求

提示用户输入密码,如果密码是“88888”则提示正确,否则要求再输入一次,如果密码是“88888”则提示正确,否则提示错误,程序结束。


#程序

namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

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

            int a = Convert.ToInt32(Console.ReadLine());

            if(a==88888)

            {

                Console.WriteLine("密码正确");

            }

           

            else

            {

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

                int b=Convert.ToInt32(Console.ReadLine());

                if (b == 88888)

                {

                    Console.WriteLine("密码正确");

                }

                else

                {

                    Console.WriteLine("密码输入错误,退出程序");

                }

            }

            Console.ReadLine();

        }

    }

}

#效果


图片发自App


图片发自App

你可能感兴趣的:(C#第五次作业02)