0_0_39691317_9478.cpp:1:2: error: invalid preprocessing directive #inlcude; did you mean #include?
1 | #inlcude<bits/stdc++.h>
| ^~~~~~~
| include
0_0_39691317_9478.cpp:3:1: error: 'string' does not name a type
3 | string add(const string &a, const string &b) {
| ^~~~~~
0_0_39691317_9478.cpp: In function 'int main()':
0_0_39691317_9478.cpp:19:5: error: 'string' was not declared in this scope
19 | string fibonacciNumbers[MAX_FIB];
| ^~~~~~
0_0_39691317_9478.cpp:1:1: note: 'std::string' is defined in header '<string>'; did you forget to '#include <string>'?
+++ |+#include <string>
1 | #inlcude<bits/stdc++.h>
0_0_39691317_9478.cpp:20:5: error: 'fibonacciNumbers' was not declared in this scope
20 | fibonacciNumbers[1] = "1";
| ^~~~~~~~~~~~~~~~
0_0_39691317_9478.cpp:23:31: error: 'add' was not declared in this scope
23 | fibonacciNumbers[i] = add(fibonacciNumbers[i - 1], fibonacciNumbers[i - 2]);
| ^~~
0_0_39691317_9478.cpp:28:11: error: expected ';' before 'a'
28 | string a, b;
| ^~
| ;
0_0_39691317_9478.cpp:29:12: error: 'cin' was not declared in this scope
29 | while (cin>>a>>b&&a!="0"&&b!="0") {
| ^~~
0_0_39691317_9478.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 | #inlcude<bits/stdc++.h>
0_0_39691317_9478.cpp:29:17: error: 'a' was not declared in this scope
29 | while (cin>>a>>b&&a!="0"&&b!="0") {
| ^
0_0_39691317_9478.cpp:29:20: error: 'b' was not declared in this scope
29 | while (cin>>a>>b&&a!="0"&&b!="0") {
| ^
0_0_39691317_9478.cpp:38:9: error: 'cout' was not declared in this scope
38 | cout << count << endl;
| ^~~~
0_0_39691317_9478.cpp:38:9: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
0_0_39691317_9478.cpp:38:26: error: 'endl' was not declared in this scope
38 | cout << count << endl;
| ^~~~
0_0_39691317_9478.cpp:1:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
+++ |+#include <ostream>
1 | #inlcude<bits/stdc++.h>
|