【D41】求1+2+…+n (JZ 64)

剑指 Offer 64. 求1+2+…+n

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

  • 利用逻辑短路符&&
class Solution {
    int res = 0;
    public int sumNums(int n) {
        boolean flag = n > 1 && sumNums(n - 1) > 1;
        res += n;
        return res;
    }
}

你可能感兴趣的:(【D41】求1+2+…+n (JZ 64))