mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +00:00
12 lines
169 B
Kotlin
Vendored
12 lines
169 B
Kotlin
Vendored
// expected: rv: 3628800
|
|
|
|
fun factorial(n: Int): Int {
|
|
var product = 1
|
|
for (i in 1..n) {
|
|
product *= i
|
|
}
|
|
return product
|
|
}
|
|
|
|
val rv = factorial(10)
|