Click here to Skip to main content
15,901,205 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Please
How do I calculate the following mathematical series 1 2 3 5 8 13 21 34 55
in vb.net language ??????
I mean how can i preview this values in a messagebox
Posted
Updated 7-Dec-12 12:51pm
v2
Comments
Richard C Bishop 7-Dec-12 17:47pm    
You are going to need to provide more details. Use the "Improve Question" widget to elaborate on what you need/want to do.
Sergey Alexandrovich Kryukov 7-Dec-12 18:40pm    
Do you understand that giving and example does not define the problem?
--SA

1 solution

I see a pattern there (namely kn+1 = kn + kn-1), you should exploit it.
However, if my hypothesis is correct, 50 is not part of the series.
 
Share this answer
 
Comments
mazen albarakani 7-Dec-12 18:26pm    
Well, if we assume that the text string to 55 not to 50, what is the appropriate code to solve this problem
Sergey Alexandrovich Kryukov 7-Dec-12 18:42pm    
You never defined the problem formally, so what do you want? Going to ask another follow-up question to every hypothesis?
--SA
CPallini 7-Dec-12 18:54pm    
Lazy, lazy man:
k0=1
k1=2
Do
k2=k0+k1
k0=k1
k1=k2
Loop While(k2<>55)
Sergey Alexandrovich Kryukov 7-Dec-12 18:43pm    
The try is good enough, a 5. I would prefer not asking before OP defines everything correctly enough.
--SA
mazen albarakani 7-Dec-12 18:53pm    
Mr kryukov
I mean how can i preview this values in a messagebox ? that's it

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900