1个数组 获取数组中第二大的数字
(限制:只能一个for循环,不能排序)
public int findSecondBigNum(int[] nums){
int max = 0, second = 0;
for(int item : nums){
max = item > max ? item : max;
second = (item > second && item < max) ? item : second;
}
return second;
}