Problem | helloworld |
---|---|
User | Leeyee |
Submission Time | 2025-08-04 16:21:43 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
helloworld.cpp:1:1: error: expected unqualified-id before ‘<’ token
1 | <bits/stdc++.h> //imports libraries
| ^
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:5:2: error: ‘cin’ was not declared in this scope
5 | cin.tie(0);
| ^~~
helloworld.cpp:6:2: error: ‘ios_base’ has not been declared
6 | ios_base::sync_with_stdio(0); // both lines make code faster
| ^~~~~~~~
helloworld.cpp:7:2: error: ‘cout’ was not declared in this scope
7 | cout << "Hello World"
| ^~~~