Problem exam
User LindseyChoo
Submission Time 2023-03-28 16:21:09
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:4: error: ‘cin’ was not declared in this scope
6 | cin >> x;
| ^~~
exam.cpp:10:5: error: ‘cout’ was not declared in this scope
10 | cout << "Hello World"
| ^~~~
exam.cpp:14:5: error: ‘cout’ was not declared in this scope
14 | cout<<a*b;
| ^~~~
exam.cpp:16:11: error: expected ‘;’ before ‘}’ token
16 | return 0
| ^
| ;
17 | }
| ~