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

ArrayList 练习

时间:2015-08-13 00:59:34      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace arrayLIST练习
{
    class Program
    {

        static void Main(string[] args)
        {
            ArrayList A = new ArrayList();
            Console.WriteLine("请输入人数:");
            int B = int.Parse(Console.ReadLine());
            for (int C = 0; C < B; C++)
            {
                Console.WriteLine("请输第" + C + 1 + "个人数的成绩:");
                A.Add(int.Parse(Console.ReadLine()));
            }


            double SUM = 0;

            for (int Z = 0; Z < B; Z++)
            {
                SUM += double.Parse(A[Z].ToString());
            }
            double AVE = SUM / B;
            Console.WriteLine("平均分数:" + AVE);


            A.Sort();
            for (int c = 0; c < B; c++)
            {
                Console.WriteLine(A[c]);
               
            }
         
            Console.ReadLine();
        }

    }
}

  

ArrayList 练习

标签:

原文地址:http://www.cnblogs.com/hanke123/p/4725860.html

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