题解 2836: 数组逆序重放

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))……

数组逆序重放

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){    int n;    ……

数组逆序重放

摘要:解题思路:随便写写,这题目比较常见,故而写题解方便自己查阅注意事项:参考代码:#include<stdio.h>int main(){    int n;    scanf("%d",&n);    ……

数组逆序重放

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int n,i,a[100],j;     scanf("%d",&n);     for(i=0;i<……

题解 2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    int a……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)……

数组逆序重放

摘要:解题思路:用两个数组注意事项:首项的下标加尾项的下标等于n+1参考代码:#include<stdio.h>int main(){    int n; scanf("%d",&n); int a[n],……

题解 2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; const int N = 110; int arr[N]; int main(……