首页 > 其他 > 详细

求平均数,排列顺序为降序

时间:2015-08-10 23:59:48      阅读:381      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            ArrayList al = new ArrayList();

            Console.WriteLine("请输入人数");
            int n =int.Parse(Console.ReadLine());

           
            for (int i = 0; i < n; i++)
            {
                Console.Write("请输入第"+(i+1)+"个学生的分数:");

                al.Add(int.Parse(Console.ReadLine()));

           }
            double he = 0;
                for(int b =0;b<n;b++)
            
                {
                    he = he + double.Parse(al[b].ToString());
                }
           

            double pj = he  / n;

            Console.WriteLine("平均分为"+pj);

            al.Sort();
            al.Reverse();
            for (int d = 0; d < n; d++)
            {
                Console.WriteLine(al[d]);
            }




                Console.ReadLine();
                 
            
            

        }
    }
}

  

求平均数,排列顺序为降序

原文:http://www.cnblogs.com/suncan0/p/4719496.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!