rubyx/test/runners/fibo_while.rb
2014-05-10 19:02:51 +03:00

14 lines
143 B
Ruby

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