LeetCode 371 Sum of Two Integers 题解
1.题目:
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
Example:
Given a = 1 and b = 2, return 3.
题意:
在不使用加减号的情况下输出两个数的和。
2.解题思路:
使用位运算:用异或计算位置上的得数,用与计算进位,直到进位为0输出结果。
3.代码
1 |
|