一、题目描述
求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
二、解题思路
1+2+3+…+n求和公式为 (1+n)*n/2 = (n+n^2)/2。
n^2使用Math.pow()方法实现,/2使用>>1右移运算实现,满足要求不使用乘除。
三、编程实现
public class Solution {
public int Sum_Solution(int n) {
return (int)(Math.pow(n, 2) + n)>>1;
}
}