题目
求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
思路
- 利用递归
- 用&&的短路原则代替判断
public class Solution {
public int Sum_Solution(int n) {
//return (n%2==1) ? (n+1)*(n/2)+(n+1)/2 : (n+1)*(n/2);
int sum = n;
//短路原则:&&前是false则后面不再计算
boolean t=((sum!=0) && ((sum += Sum_Solution(n - 1))!=0));
return sum;
}
}