本文主要是介绍[LeetCode] 371. Sum of Two Integers,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目内容
https://leetcode-cn.com/problems/sum-of-two-integers/submissions/
不使用运算符 +
和 -
,计算两整数 a
、b
之和。
示例 1:输入: a = 1, b = 2
输出: 3
示例 2:输入: a = -2, b = 3
输出: 1
题目思路
我觉得既然不能使用+-,那么只能进行二进制的运算了。
程序代码
这篇关于[LeetCode] 371. Sum of Two Integers的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!