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

Posted 追梦赤子心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。相关的知识,希望对你有一定的参考价值。

解题思路:

这题采用递归算法,同时利用逻辑与&&的短路特性:前面的判断为true的话,才会执行后面语句中的递归。所以当n=0时,前面的判断为false,递归终止,直接返回0。

package bianchengti;
/*
 * 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
 */
public class CountSumByN {
    
    public static int Solution(int n) {
       int sum = n;
         
       boolean flag = (n>0) && ((sum+=Solution(n-1))>0);
         
       return sum;
    }
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.err.println(Solution(3));
    }

}

 

以上是关于求1+2+3+...+n,要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。的主要内容,如果未能解决你的问题,请参考以下文章

《剑指offer》------求1+2+3+···+n

剑指offer系列49--求1+2+...+N的和

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

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

剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。

禁止使用循环判断求1+2+3+..n