7 lines
105 B
C++
7 lines
105 B
C++
int fib(int a, int b, int n) {
|
|
int temp;
|
|
|
|
for (unsigned int i = 0; i < n; i++) {
|
|
|
|
}
|
|
} |