尋找數組中的第二大數

方法一:數組 #include "stdio.h" #include "stdlib.h" //初始化最大值爲a[0],次大值爲a[1],遍歷一次,每次比較並更新最大值和次大值,最後就能夠獲得次大值。 int findsecondmaxvalue(int *a,int size) { int i,max,s_max; max=a[0]; //最大值 s_max=a[1];
相關文章
相關標籤/搜索