LeetCode 371. Sum of Two Integers

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.

class Solution {
public:
    int getSum(int a, int b) {
        return a+b;
    }
};
posted @ 2018-12-03 21:52  A-Little-Nut  阅读(64)  评论(0编辑  收藏  举报