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

Posted czsblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。相关的知识,希望对你有一定的参考价值。

public class Solution 
    public int Sum_Solution(int n) 
        int ans = n;
        //短路操作
        //if ans == 0 后面不执行,语句结束,相当于递归有了个终止条件,ans = 0,非常nice
     // sum(n) = n+sum(n-1)
ans && (ans += Sum_Solution(n - 1)); return ans;

 

以上是关于求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。的主要内容,如果未能解决你的问题,请参考以下文章

《剑指offer》------求1+2+3+···+n

剑指offer系列49--求1+2+...+N的和

求1+2+3+...+n

剑指offer求1+2+3+...+n

剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。

禁止使用循环判断求1+2+3+..n