Forum: C++ Nov 3rd, 2004 |
| Replies: 6 Views: 24,199 The program needs to ask for n and then output the first n terms of the Fibonacci sequence.
exp.
n = 6
1, 1, 2, 3, 5, 8
1+1 =2
2+1=3
3+2=5
5+3=8 |
Forum: C Oct 27th, 2004 |
| Replies: 1 Views: 1,699 I need to write a program that will enter integers until 0 is entered. then the program needs to return the highest integer and the lowest integer. How do I return those integers. |