这个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
相关用法
- Julia conj()用法及代码示例
- Julia abs()用法及代码示例
- Julia binomial()用法及代码示例
- Julia round()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia typeof()用法及代码示例
- Julia collect()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
- Julia pairs()用法及代码示例
- Julia one()用法及代码示例
- Julia zero()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting factorial of a number in Julia – factorial() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。