mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
delete fibonacci/#main.cpp#
This commit is contained in:
parent
8dfa5a1a76
commit
d54ead703a
@ -1,6 +0,0 @@
|
|||||||
#include<iostream>
|
|
||||||
|
|
||||||
int fib(int n)
|
|
||||||
{
|
|
||||||
return n < 2 ? 1 : fib(n-2)+ fib(n-1);
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user