12.12

作者: beloved0114 | 来源:发表于2018-12-19 09:06 被阅读0次

        list.Add(99);

                list.Add(85);

                list.Add(82);

                list.Add(63);

                list.Add(60);

                Console.WriteLine("请输入新增成绩");

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

                Console.WriteLine("插入成绩的下标是:");

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

                b = b - 1;

                list.Insert(b,a);

             

                Console.WriteLine("插入后的成绩信息是:");

                foreach (var item in list)

                {

                    Console.Write("{0}",item +"    ");

                }

            }

            catch

            {

                Console.WriteLine("输入程序错误!!");

            }

            Console.ReadKey();

        }

    }

    }

    12.12

    相关文章

      网友评论

          本文标题:12.12

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