c_cpp max.c

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp max.c相关的知识,希望对你有一定的参考价值。

long find_max(long *arr, long count) {
    long ret = arr[0];

    for(long i=1; i < count; i++){
        if (ret < arr[i]) ret = arr[i];
    }

    return ret;
}

以上是关于c_cpp max.c的主要内容,如果未能解决你的问题,请参考以下文章

林昊5

求$a$b$c中的最大值和最小值

c语言之输入3个数输出最大值

求三个数中的最大值

#include <stdio.h> void main() int a,b,c,max; scanf("%d,%d,%d",&a,&b,&c); printf(&q

c语言输入三个数,显示最大值。