Problem | helloworld |
---|---|
User | SkylerCheng |
Submission Time | 2023-03-09 17:14:47 |
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: In function ‘int main()’:
helloworld.cpp:6:23: error: expected ‘;’ before ‘return’
6 | cout << "Hello World"
| ^
| ;
7 | return 0
| ~~~~~~