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

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

时间:2018-01-05 20:48:20      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:如何   使用   pre   bool   color   return   class   blog   判断   

题目描述

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


用递归

1 public class Solution {
2     public int Sum_Solution(int n) {
3         int sum = n;
4         if(n==0) return 0 ;
5         sum+=Sum_Solution(n-1);
6         return sum;
7     }
8 }

 

但是用到了if


如何不用if 就终止递归呢? 可以用逻辑与的短路特性,

        boolean res = n>0 && (sum+=Sum_Solution(n-1))>0;

当n==0的时候,&&后面的不会执行

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

标签:如何   使用   pre   bool   color   return   class   blog   判断   

原文地址:https://www.cnblogs.com/zle1992/p/8206489.html

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