题目

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

样例
输入:10

输出:55

题解

方法一

点击查看
1
2
3
4
5
6
7
8
class Solution {
public:
int getSum(int n) {
int ans = n;
n >= 1 && (ans += getSum(n - 1));//当左边为false时,会自动跳过右边的语句
return ans;
}
};

方法二

点击查看
1
2
3
4
5
6
7
class Solution {
public:
int getSum(int n) {
char ch[n][n + 1];
return sizeof ch >> 1;
}
};