C语言-fun函数时间:2025-04-11 08:00:34fun是由用户自定义的函数,以它作为名字,比如: int fun(int m,int n) { int max; max=m>n?m:n; return max; } fun的作用是返回m,n的最大值