不允许用大于号小于号,比较任意两个数字大小

重点是返回较大的数吧? 
int max(int a ,int b){ 
    return (a+b)/2+abs(a-b)/2 
}

原文地址:https://www.cnblogs.com/chaizp/p/5313287.html