Problem helloworld
User EliteCollapseZ
Submission Time 2024-12-02 09:23:16
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:8:2: error: expected ‘;’ after class definition
8 | }
| ^
| ;
helloworld.cpp: In member function ‘int submission::main()’:
helloworld.cpp:6:4: error: ‘cout’ was not declared in this scope
6 | cout << 'Hello World';
| ^~~~
helloworld.cpp:1:1: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | using namespace std;