Answer:
try putting "uk-" or "us-" depending on where you are, you could also go through your settings and try to allow everything.
Answer: c++
int fibonacci(int n) {
if (n < 0) {
return -1;
} else if (n == 0 || n == 1) {
return n;
} else {
return fibonacci(n - 1) + fibonacci(n - 2);
}
}
int main() {
int i;
for (i = 0; i < 20; i++) {
cout << fibonacci(i) << " ";
}
}
Explanation:
this is fibonacci
Answer: script
Explanation:
I haven't done much Computer Science in whichever subject this is, but I'm sure a script is a series of commands!