不用加减乘除做加法
摘要:
题目 写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 所以有如下解法: 异或:无进位求和 与:求进位数 class Solution { public: int add(int a, int b) { if (a == 0) { return b; } while ( 阅读全文
posted @ 2019-01-27 15:18 tianzeng 阅读(162) 评论(0) 推荐(0) 编辑