Skip to content

Instantly share code, notes, and snippets.

@vvviiimmm
Created June 1, 2019 14:51
Show Gist options
  • Save vvviiimmm/fe351cb36174eadf29d0ee3c48948021 to your computer and use it in GitHub Desktop.
Save vvviiimmm/fe351cb36174eadf29d0ee3c48948021 to your computer and use it in GitHub Desktop.
object Main extends App {
print("Please enter a number: ")
val number = scala.io.StdIn.readInt()
var total = 1
for (x <- 1 to number)
total = total * x
println("Factorial of " + number.toString + " is " + total.toString)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment