2020年3月22日
摘要: 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 } 转自 阅读全文
posted @ 2020-03-22 23:15 112358D 阅读(91) 评论(0) 推荐(0)