求1+2+3+...+n(&& 代替if)

求1+2+3+...+n

http://www.nowcoder.com/questionTerminal/7a0da8fc483247ff8800059e12d7caf1

题目不能用乘除法还有判别运算符,循环等
用递归来代替循环。

class Solution {
public:
    int Sum_Solution(int n) {
        if(n==0)return n;
        return n + Sum_Solution(n-1); 
    }
};

class Solution {
public:
    int Sum_Solution(int n) {
        int ans = n;
        ans && ans += Sum_Solution(n-1); // 代替if语句 当ans = n = 0时,ans+=Sum_..不执行 直接回n
        return ans;
    }
};
全部评论

相关推荐

勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
尊嘟假嘟点击就送:加v细说,问题很大
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务