Skip to content

Commit 75bd9a9

Browse files
authored
Add files via upload
commit for the sol of 1008B
1 parent 693476a commit 75bd9a9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

1008B.cpp

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#include<bits/stdc++.h>
2+
#include<conio.h>
3+
4+
using namespace std;
5+
6+
int main(){
7+
int n;
8+
9+
cin>>n;
10+
11+
int a[n];
12+
13+
for(int i=0;i<n;i++){
14+
cin>>a[i];
15+
}
16+
17+
18+
19+
20+
21+
22+
getch();
23+
return 0;
24+
}

0 commit comments

Comments
 (0)