标签:java lan inf pac package 描述 tps int ref
package com.walegarrett.offer;
/**
* @Author WaleGarrett
* @Date 2021/2/14 21:49
*/
/**
* 题目描述:写一个函数,求两个整数之和,要求在函数体内不得使用 “+”、“-”、“*”、“/” 四则运算符号。
*/
public class Offer_65 {
public int add(int a, int b) {
while(b!=0){
int c = (a&b)<<1;
a^=b;
b=c;
}
return a;
}
}
标签:java lan inf pac package 描述 tps int ref
原文地址:https://www.cnblogs.com/GarrettWale/p/14402815.html