码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer---不用加减乘除做加法

时间:2017-08-05 09:54:13      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:不用   nbsp   剑指offer   offer   off   solution   add   class   --   

class Solution {
public:
    int Add(int num1, int num2)
    {
        while (num2--)
        {
            num1++;
        }
        return num1;
    }
};

 

剑指offer---不用加减乘除做加法

标签:不用   nbsp   剑指offer   offer   off   solution   add   class   --   

原文地址:http://www.cnblogs.com/159269lzm/p/7288466.html

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