Problem | helloworld |
---|---|
User | kvankok |
Submission Time | 2023-01-19 15:28:28 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
helloworld.cpp:3:28: error: expected constructor, destructor, or type conversion before ‘(’ token
3 | ios_base::sync_with_stdio(0);
| ^
helloworld.cpp:4:3: error: ‘cin’ does not name a type; did you mean ‘sin’?
4 | cin.tie(0);
| ^~~
| sin
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:6:22: error: expected ‘;’ before ‘}’ token
6 | cout << "Hello World"
| ^
| ;
7 | }
| ~