美文网首页
第十二节课的一个作业

第十二节课的一个作业

作者: dcy1 | 来源:发表于2018-12-18 20:24 被阅读0次
    第十二节课的一个作业

    try

                {

                    Console.WriteLine("请输入一个数字");

                    string str_i = Console.ReadLine();

                    int i = Convert.ToInt32(str_i);

                    if (i > 0 && i < 100)

                    {

                        ArrayList a = new ArrayList();

                        a.Add(i);

                        ArrayList score = new ArrayList(6);

                        score.Add(99);

                        score.Add(85);

                        score.Add(82);

                        score.Add(63);

                        score.Add(60);

                        score.InsertRange(0, a);

                        score.Sort(0, 6, null);

                        foreach (var b in score)

                        {

                            Console.Write(b + "\t");

                        }

                    }

                    else

                    {

                        Console.WriteLine("成绩在0~100之间");

                    }

                }

                catch

                {

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

                }

                Console.ReadKey();

    #效果

    相关文章

      网友评论

          本文标题:第十二节课的一个作业

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