rubyx/test/runners/fibo_times.ruby
2014-04-29 17:14:26 +03:00

13 lines
129 B
Ruby

def fibonaccit(n)
a = 0
b = 1
(n-1).times do
tmp = a
a = b
b = tmp + b
puts b
end
end
fibonaccit( 10 )