Tag: boredom
Creepiness Formula Rewrite
by Anonymous on Jun.09, 2010, under Programming
Plug in the value for x (age). This can be expressed with Haskell as the following:
f' x | x <= 14 = floor x - 1 | x >= 15 && x < 60 = floor ((3 / 2) * (x ** (4 / 5))) | x >= 60 && x <= 80 = floor x - 20 | otherwise = 0
