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

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

时间:2020-06-09 23:37:30      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:case   利用   style   判断   bsp   color   return   条件   使用   

题目描述

求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
 
 
题目链接:
 
 
 
关键点:
利用&&的短路特性,作为递归的结束条件。
 
 
public class Solution {
    public int Sum_Solution(int n) {
        int sum = n;
        boolean re = (n!=0&&(sum += Sum_Solution(n -1))>0);
        return sum;
    }
}

 

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

标签:case   利用   style   判断   bsp   color   return   条件   使用   

原文地址:https://www.cnblogs.com/MoonBeautiful/p/13081343.html

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