下面第一个程序比第二个能快大约多少啊/kk
int qmax(int x,int y){int m=(x-y)>>31;return y&m|x&~m;}
inline int qmax(int x,int y){return x>y?x:y;}