码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-06-05 12:41:20      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:bsp   递归   判断语句   关键字   结束   class   不能   执行   不执行   

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,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。

标签:bsp   递归   判断语句   关键字   结束   class   不能   执行   不执行   

原文地址:https://www.cnblogs.com/czsblog/p/10978888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!