# File lib/librbdiscrete.rb, line 67 def iterative_fact(itrtnum) itrtnum.downto(1) do total *= factorial(itrtnum) end return total end