2018-11-29

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace ConsoleApp11

{

    class Program

    {

        static void Main(string[] args)

        {

            bool b = true;

            int i = 0;

            Console.WriteLine("请输入,用户编号,年龄,积分");

            Console.WriteLine("请输入要录入的人数");

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

            try

            {

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

                Console.WriteLine("");

                while (b)

                {

                    i++;

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

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

                    Console.WriteLine(" ");

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

                    if (n / 1000 < 1 || n / 1000 > 10)

                    {

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

                        break;

                    }

                    else

                    {

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

                        Console.WriteLine(" ");

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

                        if (age < 10)

                        {

                            Console.WriteLine("您的年龄为达到要求,退出录入");

                            continue;

                        }

                        else

                        {

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

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

                            Console.WriteLine("用户编号:{0}  年龄:{1}  积分:{2}", n, age, score);

                        }

                        if (i >= nPeople)

                        {

                            b = false;

                        }

                    }

                }

            }

            catch

            {

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

            }

            Console.ReadKey();

        }

    }

}

你可能感兴趣的:(2018-11-29)