欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

剑指offer(C++)--求1+2+3+...+n

程序员文章站 2024-03-15 16:07:00
...

题目

求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字
及条件判断语句(A?B:C)。
class Solution {
public:
    int Sum_Solution(int n) {
         int res = n;
        res&&(res+=Sum_Solution(n-1));
        return res;
    }
};