0
0
0
0
0
int max(int a,int b)
{
if (a>b) return a;
else return b;
}
通过调用这个函数{ max(a,b) }就可以比较出较大的一方了
0
0
