集合ArrayList习题练一练——分数

namespace 集合习题练一练
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入你们班的人数:");
            int n = Convert.ToInt32(Console.ReadLine());
            ArrayList al = new ArrayList();
            for (int i = 0; i < n; i++)
            {
                Console.WriteLine("第"+(i+1)+"个同学的成绩为:");
                al.Add(Convert.ToInt32(Console.ReadLine()));
            }
            for (int i = 0; i < al.Count; i++)
            {
                Console.WriteLine("同学们的成绩依次为"+al[i]+"分");
            }
            double sum = 0;

for (int i = 0; i < n; i++)
            {
                sum = sum + Convert.ToInt32(al[i]);
            }
            Console.WriteLine("总分为"+sum+"分");
            al.Sort();
            for (int i = 0; i < al.Count; i++)
            {
                Console.WriteLine("同学们的成绩按照一定顺序排列为" + al[i] + "分");
            }
            double ave = 0;
            ave = (sum - Convert.ToInt32(al[0]) - Convert.ToInt32(al[4])) / (al.Count-2);
            Console.WriteLine("你们班的平均分为"+ave+"分");

Console.ReadLine();
        }
    }
}

时间: 2024-10-12 12:31:26

集合ArrayList习题练一练——分数的相关文章

集合ArrayList双色球练一练(自己的方法,太麻烦)

namespace 集合__双色球练一练{    class Program    {        static void Main(string[] args)        {        //    while (true)        //    {                        //     ArrayList al = new ArrayList();        //    al.Add(1); al.Add(2); al.Add(3); al.Add(4)

用函数将闹钟练一练

using System;using System.Collections.Generic;using System.Text;using System.Threading; namespace 用函数把闹钟习题练一练无返回值{    class Program    {        public void naozhong(DateTime dt,DateTime nz)        {            for (int i = 0; i <= 1000; i++)         

结构体英雄联盟练一练

namespace 结构体英雄联盟练一练{    class Program    {        struct player        {            public string name;            public int dengji;            public zy z;            public zb cz;        }        struct zy        {            public int ll;      

C#中集合ArrayList与Hashtable的使用

C#中集合ArrayList与Hashtable的使用 http://blog.csdn.net/linukey/article/details/42506819 ArrayList: 一. 注意事项: 1.可以指定ArrayList集合的初始大小 var list = new ArrayList(10);//容纳10个元素 若不指定大小,则默认大小为0,添加一个后为4,然后以倍数递增. 2.ArrayList是Array的复杂版本,ArrayList内部封装了一个Object类型的数组,从一般

集合及特殊集合arrayList,Stack,Queue

1,运用集合  arrayList 首先复制Colections加  : 创建arrayList ar =new arrayList(); ArrayList具体提供的功能:属性                           功能说明Count 获取 ArrayList 中实际包含的元素数 方法                           功能说明Add () 将对象添加到 ArrayList 的结尾处Clear()   从 ArrayList 中移除所有元素Clone() 创建

面向对象之集合ArrayList

using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 面向对象集合 { class Program { static void Main(string[] args) { //创建一个集合对象 ArrayList list = new ArrayLi

集合ArrayList

System.Collections 命名空间包含接口和类,这些接口和类定义各种对象(如列表.队列.位数组.哈希表和字典)的集合. System.Collections.Generic 命名空间包含定义泛型集合的接口和类,泛型集合允许用户创建强类型集合,它能提供比非泛型强类型集合更好的类型安全性和性能. System.Collections.Specialized 命名空间包含专用的和强类型的集合,例如,链接的列表词典.位向量以及只包含字符串的集合. 常用的集合为ArrayList类:特殊集合一

《Python核心编程》 第七章 映射和集合类型 - 习题

课后习题 7–1. 字典方法.哪个字典方法可以用来把两个字典合并到一起? 答: dict1 = {'1' :' python' } dict2 = {'2' :"hello" } dict1.update(dict2) dictAll = dict1 print dictAll Result: {'1': ' python', '2': 'hello'} 7–2. 字典的键.我们知道字典的值可以是任意的 Python 对象,那字典的键又如何呢?请试 着将除数字和字符串以外的其他不同类型

JAVA基础——集合——ArrayList

ArrayList集合 ArrayList的一些方法(JDK1.8): 将指定的元素附加到列表的末尾,true:添加成功,false:添加失败: public boolean add(E e) 在指定的位置插入指定的元素列表. 改变当前位置的元素(如果有的话)右边的所有元素往后移一位(增加一个到它们的索引) public void add(int index, E element) 按指定集合的Iterator返回的顺序将指定集合中的所有元素追加到此列表的末尾 public boolean ad