期中5

Console.WriteLine("请输入用户数量:");

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

            for (int b = 1; b <= a; b++)

            {

                Console.WriteLine("请输入第{0}位用户的信息:",b );

                Console.Write("请输入用户编号(<4位整数>):");


                string  c= Console.ReadLine();

                Console.Write("\n请输入用户年龄:");

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

                if (d<=10)

                {

                    Console.WriteLine("很抱歉,您的年龄不适合玩此游戏");

                    Console.WriteLine(",此用户录入失败");

                    continue;

                }else

                {

                    Console.Write("\n请输入用户积分:");

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

                    Console.WriteLine("您录入的用户信息是:");

                    Console.WriteLine("用户编号:{0} 年龄:{1}  积分:{2}", c,d ,e );

                }

              }

            Console.ReadKey();

你可能感兴趣的:(期中5)