标签:题目 面试 amp color span 面试题 style pre code
题目描述:写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。
public class Solution { public int Add(int num1,int num2) { while (num2!=0) { int temp = num1^num2; num2 = (num1&num2)<<1; num1 = temp; } return num1; } }
标签:题目 面试 amp color span 面试题 style pre code
原文地址:https://www.cnblogs.com/Aaron12/p/9512305.html