剑指Offer_47 发表于 2017-12-05 | 分类于 剑指Offer 题目求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 解题思路不能循环就递归实现 不能if就条件判断使用 && 实现 123456789public class Solution { public int Sum_Solution(int n) { int res = n; //这里需要返回个boolean值,不然编译不通过 //当res == 0时,就会退出递归循环了 boolean x = (res > 0) && ((res += Sum_Solution(n - 1)) > 0); return res; }}