Problem exam
User LindseyChoo
Submission Time 2023-03-28 16:18:30
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exam.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
exam.cpp: In function ‘int main()’:
exam.cpp:5:14: error: ‘a’ was not declared in this scope
5 | long long x;a;b;
| ^
exam.cpp:5:16: error: ‘b’ was not declared in this scope
5 | long long x;a;b;
| ^
exam.cpp:6:3: error: ‘cin’ was not declared in this scope
6 | cin>>x;
| ^~~
exam.cpp:9:5: error: ‘cout’ was not declared in this scope
9 | cout<<"Hello World"
| ^~~~
exam.cpp:13:5: error: ‘cout’ was not declared in this scope
13 | cout<<a*b;
| ^~~~
exam.cpp:15:11: error: expected ‘;’ before ‘}’ token
15 | return 0
| ^
| ;
16 | }
| ~