当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia factorial()用法及代码示例


这个factorial()是 julia 中的一个内置函数,用于返回指定数字 n 的阶乘。

用法: factorial(n::Integer)

参数:

  • n:指定号码

返回值:它返回指定数字 n 的阶乘。

范例1:




# Julia program to illustrate 
# the use of factorial() method
  
# Getting the factorial of 
# the specified number
println(factorial(0))
println(factorial(1))
println(factorial(2))

输出:

1
1
2

范例2:


# Julia program to illustrate 
# the use of factorial() method
  
# Getting the factorial of 
# the specified number
println(factorial(5))
println(factorial(7))
println(factorial(big(20)))
println(factorial(big(15)))

输出:

120
5040
2432902008176640000
1307674368000

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting factorial of a number in Julia – factorial() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。