Factorial in Scala

Published on 15 May 2023 (Updated: 15 May 2023)

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.

Current Solution

// 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.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.