vote up 0 vote down star

I am trying to write a code for Fibonacci series in VB, but some of the values in my series are incorrect. Can somebody help me with the code?

Below is what I have so far.

Private Function FibNumber(number As Integer) As Integer

If (number > 2) Then
    FibNumber = (FibNumber(number - 2) + FibNumber(number - 1))
Else
    FibNumber = 1
End If

End Function

Private Sub command1_click()
Dim x As Integer
x = Text1.Text
Call FibNumber(number)
End Sub
flag

20% accept rate
2  
What have you tried so far, and where are you stuck? – Michael Petrotta Aug 31 at 17:36
Show what you have done ;> – Master of Disaster Aug 31 at 17:36
can you provide code examples of your attempt so far? – waqasahmed Aug 31 at 17:36
compgeek: please Edit your post with some code samples of what's not working. You'll definitely get more help and great answers if you share your code. – pcampbell Aug 31 at 17:39

1 Answer

vote up 3 vote down

Well, I tried this, and I came up with the following in the first couple of results:

Private Function FibNumber(number As Integer) As Integer

If (number > 2) Then
    FibNumber = (FibNumber(number - 2) + FibNumber(number - 1)) 
Else
    FibNumber = 1
End If

End Function
link|flag
but u need to call the function to print..i guess – compgeek Aug 31 at 17:51
@compgeek That's correct, I didn't assume how you planned to use the Fibonacci series, just how to calculate it. – Joseph Aug 31 at 18:01
@joseph:then complete the code to print as well – compgeek Aug 31 at 18:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.