给定一个数组,取出这个数组中的最大数:
C语言实现:
1: #include <stdio.h>
2:
3: int getMaxNum(int a[],int length)
4: {
5: int max = 0 ;
6: if(length <= 0)
7: {
8: return max ;
9:
给定一个数组,取出这个数组中的最大数:
C语言实现:
1: #include <stdio.h>
2:
3: int getMaxNum(int a[],int length)
4: {
5: int max = 0 ;
6: if(length <= 0)
7: {
8: return max ;
9: