摘要: 1、请写一个功能性的函数,输入一个数组,返回这个数组中第二大的数字。要求:只能用一个for循环实现,不能做排序。例如:输入的数组内容是 [3, -1, 2, 8, 4, 1] 返回 4 public static int sort(int[] nums) { if (nums.l... 阅读全文
posted @ 2014-04-15 10:47 李秋 阅读(524) 评论(0) 推荐(0) 编辑