让用户输入用户名和密码,如果用户名为admin,密码为mypass,则提示登录成功.
第五课作业Console.WriteLine("请输入年龄"); int year = Convert.ToInt32(Console.ReadLine()); if (year >= 18) { Console.WriteLine("可以查看"); Console.ReadKey(); } else if (year < 10) { Console.WriteLine("不允许查看"); Console.ReadKey(); } if (year >= 10 && year < 18) { Console.WriteLine("是否继续查看(yes、no)"); string a = Console.ReadLine(); if (a == "yes") { Console.WriteLine("可以查看"); Console.ReadKey(); } else { Console.WriteLine("退出,你放弃查看"); Console.ReadKey(); }
网友评论