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

手写索引函数索引数组中的最大值

时间:2015-07-16 14:25:19      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:include   最大值   

#include <stdio.h>
int  qmax(int a[ ] ,int len)                         //自定义取最大值的函数
{  
	int maxx=0;
	for (int i=0;i<len;i++)
	{
		if (a[i]>maxx)
		{
               maxx=a[i];
		}
	}
      return  maxx;
}

 void main()
{
	int b[6]={12,4,5,43,53,3};
	printf("数组的最大值为:%d",qmax(b,sizeof(b)/sizeof(int) ) );  //sizeof(b)/sizeof(int) ) )取数组的长度

	 getchar();

}


手写索引函数索引数组中的最大值

标签:include   最大值   

原文地址:http://yhj51blog.blog.51cto.com/6492000/1675167

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