求100个整数中最大者

public int max(int a[100])
{int c;
c=a[0];
for(int i=1;i<100;i++)
if (a[i]>c) c=a[i];
return c;
}

posted @ 2008-12-10 14:30  飘逸的程序员  阅读(102)  评论(0编辑  收藏  举报