码迷,mamicode.com
首页 > 编程语言 > 详细

算法:通过逻辑运算实现两数相加

时间:2018-11-29 23:21:28      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:isp   add   符号   amp   spl   turn   esc   inf   bubuko   

* @Description 不使用加减乘除来实现数字的相加  写一个函数,
* 求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。

代码:

 

技术分享图片
int add(int num1,int num2){
 
    if(0==num2)
        return num1;//若进位为0,运算结束
    int temp=num1^num2;
    int carry=(num1&num2)<<1;
    return add(temp,carry);//若存在不为0的进位,则重复运算
}
View Code

技术分享图片

 

 

算法:通过逻辑运算实现两数相加

标签:isp   add   符号   amp   spl   turn   esc   inf   bubuko   

原文地址:https://www.cnblogs.com/liguo-wang/p/10041340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!