求1+...+n

2020-04-27  本文已影响0人  李伟13

题目描述

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

第一想法

AC代码

class Solution {
public:
    int Sum_Solution(int n) {
        n && (n += Sum_Solution(n - 1));
        return n;
    }
};
上一篇下一篇

猜你喜欢

热点阅读