Skip to content

Latest commit

 

History

History

P011

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 011

Write a program to calculate the sequence of Fibonacci numbers. Write the program in two different ways:

  • Recursive (also with memoizing the calcualted values)
  • Non-Recursive

Persian Description

برنامه ای بنویسید که n را از ورودی دریافت کرده و اعضای دنباله فیبوناچی کوچکتر از n را تولید کند.

برنامه را به دو روش بازگشتی (با ذخیره مقادیر محاسبه شده قبلی جهت جلوگیری از محاسبه‌ی مجدد) و غیربازگشتی بنویسید

Sample Input/Output

Input:

25

Output:

1
1
2
3
5
8
13
21