编写一个方法,找出两个数字a
和b
中最大的那一个。不得使用if-else或其他比较运算符。
示例:
输入: a = 1, b = 2
输出: 2
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int maximum(int a, int b) {
return a > b ? a : b;
}
}
//leetcode submit region end(Prohibit modification and deletion)