C# 數據集合---1.數組
2021-03-27 11:24
标签:new elements 均值 dex dde write 位置 返回 初始 C# 數據集合---1.數組 标签:new elements 均值 dex dde write 位置 返回 初始 原文地址:https://www.cnblogs.com/ygtup/p/9359026.htmlnamespace arry
{
class Myarry
{
///
int[,] arry2 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };//二維數組
int[, ,] arry3 = new int[2,2,3] { { { 1, 2, 3 }, { 4, 5, 6 } }, { { 7, 8, 9 }, { 10, 11, 12 } } };//三維數組
Console.WriteLine(arry2[0,0]);//輸出結果為1
Console.WriteLine(arry3[1,0,1]);//輸出結果為8
int [] [] Arr = new int [3][]; //實例化交錯數組
Arr[0] = new int[] { 1, 2, 3 }; //賦值
Arr[1] = new int[] { 4, 5, 6, 7 };
Arr[2] = new int[] { 8, 9, 10, 11, 12 };
Console.WriteLine(Arr[0][1]);//輸出結果為2
Console.WriteLine(Arr[1][1]);//輸出結果為5
class Myarry2
{
double getAverage(int[] arr,int size)
{
int i;
double avg;
int sum = 0;
for(i=0;i
class ParamArray
{
public int AddElements(params int[] arr) //參數數組
{
int sum = 0;
foreach (int i in arr)
{
sum += i;
}
return sum;
}
}
ParamArray app = new ParamArray();
int sum = app.AddElements(1, 2, 3, 4);
Console.WriteLine("總和是:{0}",sum);