美文网首页
第十七节课第二个课上练习

第十七节课第二个课上练习

作者: 流影随风 | 来源:发表于2018-12-27 09:25 被阅读0次

try

            {

                Console.WriteLine("*******欢迎进入抽奖系统*******");

                Console.WriteLine(@"            1.注册

            2.登录

            3.抽奖");

                Console.WriteLine("***************************");

                Console.Write("选择是:");

                string num = Console.ReadLine();

                switch (num)

                {

                    case "1":

                        Console.WriteLine("[富豪系统>注册]");

                        break;

                    case "2":

                        Console.WriteLine("[富豪系统>登录]");

                        break;

                    case "3":

                        Console.WriteLine("[富豪系统>抽奖]");

                        break;

                    default:

                        Console.WriteLine("输入错误");

                        break;

                }

            }

            catch

            {

                Console.WriteLine("输入错误");

            }

            Console.WriteLine("继续吗?[y/n]");

            string a = Console.ReadLine();

            if (a == "y")

            {

                try

                {

                    Console.WriteLine("*******欢迎进入抽奖系统*******");

                    Console.WriteLine(@"            1.注册

            2.登录

            3.抽奖");

                    Console.WriteLine("***************************");

                    Console.Write("选择是:");

                    string num = Console.ReadLine();

                    switch (num)

                    {

                        case "1":

                            Console.WriteLine("[富豪系统>注册]");

                            break;

                        case "2":

                            Console.WriteLine("[富豪系统>登录]");

                            break;

                        case "3":

                            Console.WriteLine("[富豪系统>抽奖]");

                            break;

                        default:

                            Console.WriteLine("输入错误");

                            break;

                    }

                }

                catch

                {

                    Console.WriteLine("输入错误");

                }

            }

            else if (a == "n")

            {

                Console.WriteLine("系统退出");

            }

            else

            {

                Console.WriteLine("输入错误");

            }

            Console.ReadKey();

相关文章

网友评论

      本文标题:第十七节课第二个课上练习

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