标签:
1、问题描述
There are two int variables: a and b, don‘t use "if", "?:", "switch" or other judgement statement, find
out the biggest one of the two numbers.
2、答案
int max = ((a+b) + abs(a-b)) / 2;
标签:
原文地址:http://www.cnblogs.com/aqing1987/p/4206098.html