answersLogoWhite

0


Best Answer

Following logic for Fibonocci int f1=0; intf2=1; int i=0; while(i<8){ int f3=f1+f2; f1=f2; f2=f3; System.out.println(f3); i++; }

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the logic for Fibonacci series in delphi?
Write your answer...
Submit
Still have questions?
magnify glass
imp