首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
leetcode:面试题 16.07. 最大数值
leetcode:面试题 16.07. 最大数值
tech
2022-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
;
}
}
转载请注明原文地址:https://tech.qufami.com/read-426.html
最新回复
(
0
)