定义加初始化
int[] arr = {1,2,3...};
int[] arr = new int[2]{1,2};
int[] arr = new int[]{1,3,5...};
获取数组的长度,arr.Length;
数组索引由0开始,也就是说第一个元素为arr[0];