题目描述
求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
对这题无语了
public class Solution {
public int Sum_Solution(int n) {
return (int)(Math.pow(n,2)+n)>>1;
}
}
2017.6.3 看了别人都解法,挺不错的:
class Solution {
public:
int Sum_Solution(int n) {
bool a[n][n+1];
return sizeof(a)>>1;
}
};
网友评论