0
Chat with our AI personalities
1 551 121 004 333 098 598.4
In other words: 1 quintillion, 551 quadrillion, 121 trillion, 4 billion, 333 million, 98 thousand, 598.4.
How about you pay attention in class so you don't have to ask the computer for the answers.be smart listen to your teacher. Just kidding ,i'm just thirteen what do i know
18 factorial is 6,402,373,705,728,000.
Pseudo code+factorial
' Iterative solution Function iterativeFactorial(ByVal n As Long) As Long Dim factorial As Long = 1 For i As Long = 1 To n factorial *= i Next Return factorial End Function ' Recursive solution Function recursiveFactorial(ByVal n As Long) As Long If n <= 1 Then Return n End If Return n * recursiveFactorial(n - 1) End Function
#!/usr/bin/perl print factorial($ARGV[11]); sub factorial { my($num) = @_; if($num == 1) { return 1; # stop at 1, factorial doesn't multiply times zero } else { return $num * factorial($num - 1); # call factorial function recursively } }