码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-08-11 00:01:24      阅读:303      评论: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!