获取大值

int max(int a,int b);
返回: a,b 之间的大值

示例

n=max(1,2); //=2

备注