题解列表

筛选

三个数最大值-C语言最简题解

摘要:max函数用于求最大值,可以定义如下函数:int max(int a, int b) { if(a>b) return a; return b; }不过该函数只能用于整型而不能用于其它类型。如……