42.C#--集合的使用,创建一个集合,里面添加一些数字,求平均值与和,以及最大值,最小值
2021-06-04 20:06
标签:一个 list read OLE int 最小值 [] object类 新建 42.C#--集合的使用,创建一个集合,里面添加一些数字,求平均值与和,以及最大值,最小值 标签:一个 list read OLE int 最小值 [] object类 新建 原文地址:https://blog.51cto.com/12679593/2391360
{
//42.集合的使用,创建一个集合,里面添加一些数字,求平均值与和,以及最大值,最小值
//创建一个集合
ArrayList list = new ArrayList();
//向集合添加一些数字
list.AddRange(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 });
//新建sum变量来存储和
int sum = 0;
//新建一个max来存储最大值
int max = (int)list[0];
//新建一个min来存储最小值
int min = (int)list[1];
//通过一个循环来赋值
for (int i = 0; i max)
{
max = (int)list[i];
}
if ((int)list[i]
文章标题:42.C#--集合的使用,创建一个集合,里面添加一些数字,求平均值与和,以及最大值,最小值
文章链接:http://soscw.com/index.php/essay/90554.html