Problem | helloworld |
---|---|
User | BlueSpace |
Submission Time | 2023-11-08 10:31:37 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
helloworld.cpp:2:1: error: ‘string’ does not name a type; did you mean ‘stdin’?
2 | string str = "hello";
| ^~~~~~
| stdin
helloworld.cpp:3:1: error: ‘str’ does not name a type; did you mean ‘std’?
3 | str = str + " world";
| ^~~
| std
helloworld.cpp:4:1: error: expected unqualified-id before ‘return’
4 | return 0;
| ^~~~~~
helloworld.cpp:5:1: error: expected declaration before ‘}’ token
5 | }
| ^