面试题64. 求1+2+…+n

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

示例 1:
输入: n = 3
输出: 6
示例 2:
输入: n = 9
输出: 45
限制:
1 <= n <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/qiu-12n-lcof

著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

一、用递归代替for循环,&& 代替 if

class Solution {
   public int sumNums(int n) {
      int total = n;
      boolean b = (n > 0) && (total += sumNums(n - 1)) > 0;
      return total;
   }
}

二、用Math类

class Solution {
   public int sumNums(int n) {
      return (int) (Math.pow(n, 2) + n) >> 1;
   }
}

你可能感兴趣的:(面试题64. 求1+2+…+n)