1234567891011
求 1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。示例:输入: n = 3输出: 6输入: n = 9输出: 45限制:1 <= n <= 10000
123456789
class Solution {public: int sumNums(int n) { (n > 0) && (n += sumNums(n - 1)); return n; }};