Ruby按规律求第15个数是多少(答案是377)

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

def method n
	a, b = 0, 1
	(n-2).times {a, b = b, a + b}
	puts b
end

method 15