Problem helloworld
User CodeBreakerMaster
Submission Time 2023-04-19 17:51:03
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:3:20: error: expected ‘;’ before ‘int’
3 | using namespace std
| ^
| ;
4 | int main () {
| ~~~
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:5:24: error: expected ‘;’ before ‘}’ token
5 | cout << "Hello World!"
| ^
| ;
6 | }
| ~