rubyx/test/runners/fibo_while.rb
2014-05-13 21:06:12 +03:00

14 lines
152 B
Ruby

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