delete pics to save space
This commit is contained in:
12
history_source/信息学奥赛一本通/1.5.1.4.cpp
Normal file
12
history_source/信息学奥赛一本通/1.5.1.4.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include<cstdio>
|
||||
using namespace std;
|
||||
int main()
|
||||
{
|
||||
int n;
|
||||
scanf("%d",&n);
|
||||
int a[n];
|
||||
for(int i=0;i<n;i++) scanf("%d",a+i);
|
||||
for(int i=n-1;i>=0;i--) printf("%d ",a[i]);
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user