Problem exam
User NotTYR
Submission Time 2023-02-08 20:53:53
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exam.cpp: In function ‘int main()’:
exam.cpp:7:3: error: ‘str’ was not declared in this scope; did you mean ‘std’?
7 | str a;
| ^~~
| std
exam.cpp:10:10: error: ‘a’ was not declared in this scope
10 | cin >> a;
| ^
exam.cpp:13:25: error: expected ‘;’ before ‘}’ token
13 | cout << "Hello World"
| ^
| ;
14 | }
| ~