题解 2836: 数组逆序重放 摘要: #include using namespace std; const int N = 2e6; int a[N]; int i; int m…… 题解列表 2023年11月27日 0 点赞 0 评论 102 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],b[100],n,i; scanf("%d",&n); for( i=0…… 题解列表 2024年10月24日 0 点赞 0 评论 97 浏览 评分:0.0
2836: 数组逆序重放 摘要:``` #include using namespace std; int main(){ int n; cin>>n; int a[n]; for( int i=1;i>a[i…… 题解列表 2023年11月24日 0 点赞 0 评论 215 浏览 评分:0.0
2836: 数组逆序重放 摘要:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i …… 题解列表 2023年03月01日 0 点赞 0 评论 167 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long b; cin>>b; …… 题解列表 2024年04月07日 0 点赞 0 评论 93 浏览 评分:0.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int n; …… 题解列表 2023年07月17日 0 点赞 0 评论 50 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int temp; …… 题解列表 2024年07月17日 0 点赞 0 评论 140 浏览 评分:0.0
2836: 数组逆序重放(C语言) 摘要:###第一种 #include int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;i=0;i-…… 题解列表 2023年07月22日 0 点赞 0 评论 141 浏览 评分:0.0
数组逆序重放(easy) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[101]; cin>>n; for(int…… 题解列表 2022年11月09日 0 点赞 0 评论 480 浏览 评分:6.0
新手 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t,i; scanf("%d",&n); int a[n]; for(i=0…… 题解列表 2024年12月11日 0 点赞 0 评论 379 浏览 评分:6.0