码迷,mamicode.com
首页 > 编程语言 > 详细

如何使用一次for循环得到数组中第二大的数

时间:2018-03-19 19:37:13      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:art   location   fps   second   cond   如何   []   blog   style   

装载声明:http://blog.csdn.net/lxsmk9059/article/details/77920206?locationNum=1&fps=1

 1 int array[] = {1,12,58,369,45,17,59,3654,370};
 2     int max = array[0];
 3     int secondmax = array[0];
 4 
 5     for(int i = 0; i < sizeof(array)/sizeof(int); i++)
 6     {
 7         if(array[i] > max)
 8         {
 9             secondmax = max;
10             max = array[i];
11         }
12         else if(array[i] > secondmax)
13         {
14             secondmax = array[i];
15         }
16     }

 

如何使用一次for循环得到数组中第二大的数

标签:art   location   fps   second   cond   如何   []   blog   style   

原文地址:https://www.cnblogs.com/lucong-white/p/8604142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!