码迷,mamicode.com
首页 > 其他好文 > 详细

计算阶乘

时间:2018-01-08 01:09:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:公式   string   factor   pre   main   tor   str   post   ret   

 1 package com.jdk7.chapter1;
 2 
 3 public class Factorial {
 4     /**
 5      * 计算n!的值,利用公式n×(n-1)×(n-2)×(n-3)×...×3×2×1
 6      * 注:当n大于17时n!会超出long的取值范围
 7      */
 8     public long getFactorial(int n){
 9         if(n<0 || n>17){
10             System.out.println("n的取值区间为[0,17]");
11             return -1;
12         }else if(n==0){
13             return 1;
14         }else{
15             long result = 1;
16             for(;n>0;n--){
17                 result *=n;
18             }
19             return result;
20         }
21         
22     }
23     
24     public static void main(String[] args) {
25         Factorial f = new Factorial();
26         System.out.println(f.getFactorial(4));
27         System.out.println(f.getFactorial(17));
28         System.out.println(f.getFactorial(18));
29         System.out.println(f.getFactorial(0));
30         System.out.println(f.getFactorial(-2));
31     }
32 
33 }
34 
35 执行结果:
36 24
37 355687428096000
38 n的取值区间为[0,17]
39 -1
40 1
41 n的取值区间为[0,17]
42 -1

 

计算阶乘

标签:公式   string   factor   pre   main   tor   str   post   ret   

原文地址:https://www.cnblogs.com/celine/p/8232881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!