S Sweden Member Nov 8, 2000 59 0 0 Dec 12, 2001 #1 Hello doing exercises in VB programming Have the Fibonacci series, 1,1,2,3,5,8,..... Anybody know the formula to run it in the computer..? Swe
Hello doing exercises in VB programming Have the Fibonacci series, 1,1,2,3,5,8,..... Anybody know the formula to run it in the computer..? Swe
D Damascus Golden Member Jul 15, 2001 1,434 0 0 Dec 12, 2001 #2 << Hello doing exercises in VB programming Have the Fibonacci series, 1,1,2,3,5,8,..... Anybody know the formula to run it in the computer..? Swe >> "Run it in the computer"? What do you mean by that?
<< Hello doing exercises in VB programming Have the Fibonacci series, 1,1,2,3,5,8,..... Anybody know the formula to run it in the computer..? Swe >> "Run it in the computer"? What do you mean by that?
M Moohooya Senior member Oct 10, 1999 677 0 0 Dec 12, 2001 #3 Check out http://forums.anandtech.com/messageview.cfm?catid=33&threadid=610957&highlight_key=y&keyword2=%20%20
Check out http://forums.anandtech.com/messageview.cfm?catid=33&threadid=610957&highlight_key=y&keyword2=%20%20
W WillyF1uhm1 Senior member Aug 10, 2001 407 0 0 Dec 12, 2001 #5 I was thinking along this line i=0 A = 1 B = 1 C = A + B Do While i<10 A = B B = C C = A + B i = i+1 Loop Or something like it...
I was thinking along this line i=0 A = 1 B = 1 C = A + B Do While i<10 A = B B = C C = A + B i = i+1 Loop Or something like it...