A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Factorial in Scala page! Here, you'll find the source code for this program as well as a description of how the program works.
// Scala Program to calculate
// Factorial of a number
import scala.util.Try
// Creating object
object Factorial
{
// Iterative way to calculate
// factorial
def factorial(n: Int): Int = {
var f = 1
for(i <- 1 to n)
{
f = f * i;
}
return f
}
// Driver Code
def main(args: Array[String])
{
val m = Try(args(0).toInt).getOrElse(-1)
if (m < 0) {
println("Usage: please input a non-negative integer")
}
else {
println(factorial(m))
}
}
}
Factorial in Scala was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.