Java程序中求前N项和的累加问题求前N项和问题是我们Java中非常基础的一个问题.简单来说,就是 当n=1 , 总和sum = 1。 然后当n=2的时候,sum=1+2=3。 如下图所示: 具体代码实现如下: 123456789101112public class Demo { public static void main(String args[]){ System.out.println(getSum(10)); } private static int getSum(int n ){ if(n == 1 ){ return 1; }else{ return (n-1) + n ; } }} author: Ken Yang link: http://example.com/2022/01/31/JavaSE项目集合/Java中的累加问题/ Copyright notice: All articles on this website, unless otherwise stated, adopt CC BY-NC-ND 4.0 reprint policy. If reproduced, please indicate source! Prev: 汉诺塔(递归写法) Next: 面向对象的三大特征 你的赏识是我前进的动力 支付宝 微信 catalog catalog