摘要:
class Program { static void Main(string[] args) { // 输出 ypoc si yek eht string str = "the key is copy"; char[] arr = str.ToCharArray(); ... 阅读全文
摘要:
//获取元素的索引 ArrayList arrList = new ArrayList(); for (int i = 0; i < array.Length; i++) { if (array[i] == 8) { ... 阅读全文
摘要:
int[] array = { 1, 3, 5, 2, 4, 6, 7, 9, 8, 8 }; var max = array.Max();//获取数组中的最大值 第一种 //第二种方法 var max2 = array[0]; for (int i = 0; i < array.Leng... 阅读全文