You should write your own then!
It's exactly the same as this Ruby script, only condensed into one line with one space.:
PHP Code:def fb(n, a, b)
if (x%a == 0)
print "fizz"
if (x%b == 0)
print "buzz"
elsif (x%b == 0)
print "buzz"
else
print x
end
print "\n"
end
fb(100, 3, 4)





Reply With Quote