Problem | helloworld |
---|---|
User | cheryll |
Submission Time | 2023-08-17 09:03:11 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
helloworld.cpp:3:26: error: expected constructor, destructor, or type conversion before ‘(’ token
3 | ios_base::sync_with_stdio(0); cin.tie(0);
| ^
helloworld.cpp:3:31: error: ‘cin’ does not name a type; did you mean ‘sin’?
3 | ios_base::sync_with_stdio(0); cin.tie(0);
| ^~~
| sin
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:5:23: error: expected ‘;’ before ‘}’ token
5 | printf("Hello World")
| ^
| ;
6 | }
| ~