Problem gecko
User 2Princes1Lance
Submission Time 2023-12-17 00:26:23
Score 0
Max Time N/A
Max Memory N/A

Compile Error

gecko.cpp: In function ‘int main()’:
gecko.cpp:2:5: error: ‘ios_base’ has not been declared
2 | ios_base::sync_with_stdio(false); cin.tie(nullptr);
| ^~~~~~~~
gecko.cpp:2:39: error: ‘cin’ was not declared in this scope
2 | ios_base::sync_with_stdio(false); cin.tie(nullptr);
| ^~~
gecko.cpp:3:5: error: ‘FILE’ was not declared in this scope
3 | FILE *input, *output;input = fopen("GECKO.IN","r");output = fopen("GECKO.OUT","w");
| ^~~~
gecko.cpp:1:1: note: ‘FILE’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’?
+++ |+#include <cstdio>
1 | int main(){
gecko.cpp:3:11: error: ‘input’ was not declared in this scope; did you mean ‘int’?
3 | FILE *input, *output;input = fopen("GECKO.IN","r");output = fopen("GECKO.OUT","w");
| ^~~~~
| int
gecko.cpp:3:19: error: ‘output’ was