求1+2+3+...+n的和不能使用乘除、for等(思路与实现)
程序员文章站
2022-03-13 12:15:23
...
题目描述
求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
思路:
使用短路的方法&&。当n = 0的时候发生短路。
实现:
public class Solution {
public int Sum_Solution(int n) {
int sum = n;
boolean flag = (sum > 0) && ((sum += Sum_Solution(n - 1)) > 0);
return sum;
}
}
上一篇: 一道计算机二级的题目