Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
Example
No.1
Input: a = 1, b = 2
Output: 3
No.2
Input: a = -2, b = 3
Output: 1
Code
1 | // 1.不考虑进位的加法就是异或运算; |
写BUG的程序猿
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
Input: a = 1, b = 2
Output: 3
Input: a = -2, b = 3
Output: 1
1 | // 1.不考虑进位的加法就是异或运算; |