摘要: 1 using System; 2 using System.Collections; 3 4 namespace C_9_4 5 { 6 class Program 7 { 8 9 static void Main(string[] args) 10 { 11 //ArrayList类 12 // 阅读全文
posted @ 2020-09-11 16:19 想活出点人样 阅读(739) 评论(0) 推荐(0) 编辑
摘要: 1 static void Main(string[] args) 2 { 3 //Array.Find 4 //搜索与指定条件match相匹配的项,然后输出第一个匹配项 5 //Array.Find(Array1,match); 6 7 int i, j, k; 8 int[] a = new i 阅读全文
posted @ 2020-09-11 15:03 想活出点人样 阅读(570) 评论(0) 推荐(0) 编辑