Return
Styles:
Pseud0ch
,
Terminal
,
Valhalla
,
NES
,
Geocities
,
Blue Moon
.
Entire thread
Fibonacci sequence!
1
Name:
Anonymous
2007-09-25 10:58
ID:ScErbbWX
I'll start:
0
178
Name:
Anonymous
2007-09-26 20:33
ID:/0XrlAMP
unsigned long int fibo(int n){
if(n>2)
return n;
else
return fibo(n-1)+fibo(n-2);
}
Newer Posts
Don't change these.
Name:
Email:
Entire Thread
Thread List