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

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

时间:2018-10-06 12:06:06      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:ase   case   判断   mat   code   ret   ...   return   lse   

法1.采用递归,利用逻辑与的短路特性

public class Solution {
    int Sum_Solution(int n) {
        int ans = n;
        ans && (ans += Sum_Solution(n - 1));
        return ans;
    }
}

法2. 调用Java库函数

public class Solution {
    public int Sum_Solution(int n) {
        int sum = (int) (Math.pow(n,2) + n);
       return sum>>1;
    }
}

 

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

标签:ase   case   判断   mat   code   ret   ...   return   lse   

原文地址:https://www.cnblogs.com/nickup/p/9746714.html

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