DSP

如何只用位运算符实现加法

2019-07-13 16:14发布

int Add(int a,int b){ if(b==0) return a; int sum,carry; sum = a&b; carry = (a|b)<<1; return Add(sum,carry); }