offer-64


1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。

示例 1:

输入: n = 3
输出: 6

示例 2:

输入: n = 9
输出: 45

限制:

  • 1 <= n <= 10000
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
    class InnerC {
        public static int num = 0;
        InnerC(int n) {
            num += n;
        }
    }

    private boolean innerFunc(int n) {
        InnerC s = new InnerC(n);
        return n > 0 && innerFunc(n - 1);
    }
    public int sumNums(int n) {
        InnerC.num = 0;
        innerFunc(n);
        return InnerC.num;
    }
}
//leetcode submit region end(Prohibit modification and deletion)

文章作者: 倪春恩
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 倪春恩 !