Borderou de evaluare (job #738211)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Pinochio (clasa a 5-a) | Compilator | cpp-32 |
Rundă | Arhiva de probleme | Status | evaluat |
Dată | 15 oct. 2023 13:08:49 | Scor | 0 |
Raport evaluator
Eroare de compilare:
main.cpp:5:11: error: expected unqualified-id before string constant
5 | ofstream ("pinochio.out");
| ^~~~~~~~~~~~~~
main.cpp:5:11: error: expected ')' before string constant
5 | ofstream ("pinochio.out");
| ~^~~~~~~~~~~~~~
| )
main.cpp: In function 'int main()':
main.cpp:9:5: error: 'cin' was not declared in this scope
9 | cin>>n;
| ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
1 | #include <fstream>
+++ |+#include <iostream>
2 |
main.cpp:23:5: error: 'cout' was not declared in this scope
23 | cout<<n<<endl;
| ^~~~
main.cpp:23:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
main.cpp:8:15: warning: unused variable 'i' [-Wunused-variable]
8 | int n,p,k,i;
| ^