标签:new elements 均值 dex dde write 位置 返回 初始
namespace arry { class Myarry { /// <summary> /// 數組Arry /// </summary> /// <param name="args"></param> static void Main(string[] args) { //聲明數組datatype[] arryName datatype指定被存儲在數組中的元素的類型 []指定數組的維度,秩指定數組的大小 arryName指定數組名稱 int[] n = new int[10]; //初始化數組 //賦值 n[0] = 111; // 聲明數組同時賦值 double[] balance = { 1,2,3,4}; //創建并初始化數組 int []marks = new int[5] {1,2,3,4,5} //賦值一個數組變量到另一個目標數組變量中int []marks =new int[]{1,2,3,4,5}; int[] score = marks; // c#中,當創建一個數組時,每個數組元素為一個默認值初始化為0(int) 0.0(float) false(bool) null(引用) // 可以聲明一個數組變量但不將其初始化,但將數組分配給此變量時必須使用new 運算符 int i, j; /* 初始化數組N的元素 */ for (i = 0; i < 10; i++) { n[i] = i + 100; } /* 輸出每個數組元素的值 */ for (j = 0; j < 10; j++) { Console.WriteLine("Element[{0}] = {1}",j,n[j]); } Console.ReadKey(); } } }
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<size;++i) { sum += arr[i]; } avg = (double)sum/size; return avg; } /// <summary> /// 傳遞數組給函數,計算平均值 /// </summary> /// <param name="args"></param> static void Main2(string[] args) { Myarry2 app = new Myarry2(); int[] balance = new int[]{1,2,3,4,5};//帶有5個元素的int數組 double avg; /* 傳遞數組的指針作為參數 */ avg = app.getAverage(balance,5); Console.WriteLine("平均值為:{0}",avg); Console.ReadKey(); } }
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);
标签:new elements 均值 dex dde write 位置 返回 初始
原文地址:https://www.cnblogs.com/ygtup/p/9359026.html