摘要:
“C# :使用递归寻找一维整型数组中的最大值”传说中的入门算法。首先我们用简单的for循环语句,遍历一遍数组就可以找出它的最大值: 1 public class Test { 2 public static void Main(){ 3 int[] array = new int[] { 2,4,5,6,23,24,21,66,21}; 4 int max = array[0]; 5 //通过使用for循环求出array数组的最大值 6 for (int i = 0; i < a... 阅读全文