Name:
Anonymous
2011-05-13 11:13
Your language is shit and the programs you write are slow. Switch to Python and be enlightened.
Name:
Anonymous
2011-05-25 14:49
>>52
Why would you need one fundamental solution for everything?
>>62
Ruby:
def fact(n)
if (n == 0)
return 1
else
x = 1
n.downto(1) do |a|
x = x * a
end
return x
end
end