leetcode:面试题 16.07. 最大数值

tech2022-07-09  208

编写一个方法,找出两个数字a和b中最大的那一个。不得使用if-else或其他比较运算符。

class Solution { public int maximum(int a, int b) { long c = a; long d = b; int res = (int)((Math.abs(c - d) + c + d) / 2); return res; } }
最新回复(0)