剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。
Posted 桌子哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。相关的知识,希望对你有一定的参考价值。
/*
求1+2+3+...+n,
要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
*/
//解题思路:对于A && B,如果A为假,那么就不执行B了;而如果A为真,就会执行B。
//对于A || B,如果A为真,那么就会不执行B了;而如果A为假,就会执行B。
//逻辑运算符了,有短路特性的话,就可以当作if来使用了。
public class Class53 {
public int Sum_Solution(int n){
int sum = n;
boolean index = (n > 1) && ((sum += Sum_Solution(n - 1)) > 0); //if(n > 1){sum += Sum_solution(n - 1);}
return sum;
}
public void test(){
int n = 10;
System.out.println(Sum_Solution(n));
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Class53 c = new Class53();
c.test();
}
}
以上是关于剑指Offer(Java版)第五十三题:求1+2+3+...+n, 要求不能使用乘除法forwhileifelseswitchcase等关键字及条件判断语句(A?B:C)。的主要内容,如果未能解决你的问题,请参考以下文章