using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace _18集合的练习 { class Program { static void Main(string[] args) { #region 创建一个集合,里面添加一些数字,求平均值与和,最大值和最小值 //ArrayList list = new ArrayList(); //list.AddRange(new int[] { 1, 2, 3, 4, 5 }); //int sum = 0; //int max = (int)list[0]; //int min = (int)list[0]; //for (int i = 0; i < list.Count; i++) //{ // if ((int)list[i] > max) // { // max = (int)list[i]; // } // sum += (int)list[i]; //} //Console.WriteLine("这个集合里的数字的和为{0},平均值是{1},最大值{2}", sum, sum / list.Count, max); //Console.ReadKey(); #endregion #region 写一个长度为10的集合,要求在里面随机存放10个数字(0-9),要求所有的数字不能重复 ArrayList list = new ArrayList(); Random r = new Random(); for (int i = 0; i < 10; i++) { int rNumber = r.Next(0, 100); //表示集合中没有这个随机数 if (!list.Contains(rNumber)) { list.Add(rNumber); } else//表示集合中没有这个随机数 { //一旦产生重复的随机数,这次循环就不算数,所以i-- i--; } } for (int i = 0; i < list.Count; i++) { Console.WriteLine(list[i]); } Console.ReadKey(); #endregion } } }
ArrayList集合目前不常用了,原因:虽然存储数据很方便,但是提取时过于繁琐。
时间: 2024-10-18 16:53:21