Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 737 Bytes

README.md

File metadata and controls

42 lines (24 loc) · 737 Bytes

English Version

题目描述

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

示例:

输入: a = 1, b = 2
输出: 2

解法

Python3

Java

...