can you help me please?,
January 25, 2009 at 4:55 AM
write a java program to read an integer numbers .print fibonacci series up to n. the fibonacci number FN are defind as follows: 1,1,2,3,5,8,13,21 ....... i=0,1,2,3... in other word each number is the sum of the previous twonumbers.the first few fibonacci number are F0=1 and F1=1 (hint :assign F0=1and F1=1 as constant)