欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

求1+2+3+...+n

程序员文章站 2024-03-15 15:24:06
...

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

方法:
*1+2+3+…+n=(1+n)n/2=((n^2)+n)/2

public class Solution {
    public int Sum_Solution(int n) {
        return (int)(Math.pow(n,2)+n)/2;
    }
}

方法:

public class Solution {
    public int Sum_Solution(int n) {
        int sum=n;
        boolean flag=(sum>0)&&(sum+=Sum_Solution(n-1))>0;
        return sum;
    }
}

剑指offer编程题