Problem | helloworld |
---|---|
User | Bob |
Submission Time | 2023-11-08 10:14:31 |
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:5:23: error: expected ‘;’ before ‘return’
5 | cout << "Hello World"
| ^
| ;
6 | return 0
| ~~~~~~