Description:求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
分析:利用逻辑与的短路特性实现递归终止。
public class Solution {
public int Sum_Solution(int n) {
int sum = n;
boolean ans = (sum > 0) && (sum += Sum_Solution(n - 1)) > 0;
return sum;
}
}