[request]Fibonacci seq prgm
Can some one make this program for me its for a fucking homework, research shit, and i don not know how to program
here is the Script for it:
unsigned int fib(unsigned int n){
if (n < 2)
return n;
else
return fib(n - 1) + fib(n - 2);
}
wat exactly do u want do u want a program with button and that code inside of the button or wat i dont undestand wat ur asking for