Problem | helloworld |
---|---|
User | estkn |
Submission Time | 2025-02-21 14:57:36 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:4:8: error: ‘cout’ is not a member of ‘std’
4 | std :: cout << "Hello World";
| ^~~~
helloworld.cpp:1:1: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 |
helloworld.cpp:6:9: error: expected ‘;’ before ‘}’ token
6 | return 0
| ^
| ;
7 | }
| ~