Problem | xmas |
---|---|
User | itchydeez |
Submission Time | 2023-12-13 12:44:34 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
xmas.cpp:2:7: error: expected nested-name-specifier before ‘namspace’
2 | using namspace std;
| ^~~~~~~~
xmas.cpp: In function ‘int main()’:
xmas.cpp:5:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
5 | cin>>n;
| ^~~
| std::cin
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from xmas.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
xmas.cpp:7:7: error: ‘i’ was not declared in this scope
7 | for (i=0;i<n;i++){
| ^
xmas.cpp:12:7: error: ‘j’ was not declared in this scope
12 | for (j=0;j<n;j++){
| ^
xmas.cpp:13:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
13 | cout<<arr[j];
| ^~~~
| std::cout
In file incl