摘要:
Random: Random ran=new Random();//初始化 int a=ran.Next(10); Console.WhiteLine(a); Console.ReadLine(); //随机出验证码,对照输入,判断是否正确; string s = "abcdefghijklmnop 阅读全文
摘要:
//判断年月日是否正确; for (; ; ) { Console.Write("请输入年份:"); int a = int.Parse(Console.ReadLine()); if (a >= 0 && a <= 9999) { Console.Write("请输入月份:"); for (; ; 阅读全文
摘要:
//输入年月日,判断是否正确 Console.WriteLine("输入一个年份"); int year = int.Parse(Console.ReadLine()); Console.WriteLine("输入一个月份"); int month = int.Parse(Console.ReadL 阅读全文