不用+做加法
Posted irisiscool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不用+做加法相关的知识,希望对你有一定的参考价值。
1 class Solution { 2 public int add(int a, int b) { 3 while(a != 0){ 4 int temp = a ^ b; 5 a = ((a & b) << 1); 6 b = temp; 7 } 8 return b; 9 } 10 }
转自https://www.jianshu.com/p/247a06f1c382
以上是关于不用+做加法的主要内容,如果未能解决你的问题,请参考以下文章