码迷,mamicode.com
首页 > 其他好文 > 详细

P90

时间:2014-07-26 02:03:56      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:io   for   re   c   b   x   r   return   

#include<stdio.h>
#define N 4
int fun(int a[][N])
{
	int i,j,max=a[0][0];
	for(i=0;i<2;i++)
		for(j=0;j<N;j++)
			if(max<a[i][j])
				max=a[i][j];
			return max;
}
main()
{
	int aa[2][N]={1,2,3,4,8,43,56,12};
	printf("max=%d\n",fun(aa));
}

P90,布布扣,bubuko.com

P90

标签:io   for   re   c   b   x   r   return   

原文地址:http://blog.csdn.net/u013116579/article/details/38129589

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