代码实现:求1+2!+3!+...+20!的和
//求1+2!+3!+...+20!的和 public class Test21 { public static void main(String[] args) { long sum = 1; long sum2 = 0; for (int i = 2; i <= 4; i++) { for (int j = 2; j <= i; j++) { sum = sum * j; System.out.println(sum); } sum2 =sum2 +sum ; sum = 1; } System.out.println(sum2); } }
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!