| Problem | helloworld |
|---|---|
| User | Ryuichi12 |
| Submission Time | 2025-11-12 10:09:29 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
helloworld.cpp:2:20: error: expected ‘;’ before ‘int’
2 | using namespace std
| ^
| ;
3 |
4 | int main {
| ~~~
helloworld.cpp:4:5: error: cannot declare ‘::main’ to be a global variable
4 | int main {
| ^~~~
helloworld.cpp:6:8: error: expected primary-expression before ‘str1’
6 | string str1 = "Hello World"
| ^~~~
helloworld.cpp:6:8: error: expected ‘}’ before ‘str1’
helloworld.cpp:4:10: note: to match this ‘{’
4 | int main {
| ^
helloworld.cpp:10:1: error: expected declaration before ‘}’ token
10 | }
| ^