题解 2836: 数组逆序重放

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

筛选

题解 2836: 数组逆序重放

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

c语言 数组逆序重放

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

2025/8/7刷题记录

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

2836: 数组逆序重放

摘要:参考代码:n = int(input()) print(&#39; &#39;.join(list(map(str, input().split()))[::-1]))……

数组逆序重放

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

2836: 数组逆序重放

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

数组逆序重放

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

2836: 数组逆序重放

摘要:``` #include using namespace std; int main(){ int n; cin>>n; int a[n]; for( int i=1;i>a[i……