题解 2836: 数组逆序重放

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

筛选

2836: 数组逆序重放

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

2836: 数组逆序重放

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

2836: 数组逆序重放

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

2836: 数组逆序重放

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

题解 2836: 数组逆序重放

摘要:解题思路:在正向循环后需要有有一个反向循环注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long l……

c语言 数组逆序重放

摘要:解题思路:将数组扩大逆序存储注意事项:注意输出格式 每行有空格 最后一行没有空格参考代码:#include<stdio.h>int main(void){ int n; scanf(&qu……

数组逆序重放

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

2025/8/7刷题记录

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b,m; scanf("%……

2836: 数组逆序重放

摘要:#include<stdio.h>#include<math.h>int main(){    int n;    scanf("%d",&n);    int a[n];    for(int i ……