求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。
Posted nickup
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。相关的知识,希望对你有一定的参考价值。
法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,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。的主要内容,如果未能解决你的问题,请参考以下文章
剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。