C语言-fun函数

fun是由用户自定义的函数,以它作为名字,比如:

int fun(int m,int n)
{
int max;
max=m>n?m:n;
return max;
}

fun的作用是返回m,n的最大值

你可能感兴趣的:(计算机二级-C语言,c++)