Computing a Fibonacci Sequence

krazykrisi

Member
Joined
Dec 6, 2005
Messages
15
Programming Experience
1-3
I'm having trouble understanding this one. I know that you can't tell me how to do my homework but can you help me to understand what exactly it is they are asking for. I don't know where to even start on this one.

A sequence of Fibonacci numbers begins with integers 1 and 1, and continues endlessly, with each number being the sum of the preceding two numbers:
1, 1, 2, 3, 5, 8, 13, 21, 34,.....
Design and develop a program to compute the first X integer numbers of the sequence. Where the value of X is entered in a NumericUpDown control. Only accept values for X that are greatere than 3 and less than or equal to 150. Display the results in a ListView control that has one column.

Thanks!
 
Back
Top