题解 2836: 数组逆序重放 摘要: #include using namespace std; const int N = 2e6; int a[N]; int i; int m…… 题解列表 2023年11月27日 0 点赞 0 评论 102 浏览 评分:0.0
reverse倒序列表 摘要:解题思路:注意事项:参考代码:n=int(input())nums=list(map(int,input().split())) nums.reverse()for i in nums: pr…… 题解列表 2023年11月26日 0 点赞 0 评论 426 浏览 评分:9.9
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
逆序重放不等于逆序输出 摘要:逆序重放改变了数组实际的顺序,而逆序输出并未改变顺序 #include int main() { int arr[100] = { 0 }; in…… 题解列表 2023年09月03日 0 点赞 2 评论 887 浏览 评分:9.9
数组逆序重放 摘要:解题思路:注意事项:逆序打印时,从n-1开始,因为最后要回到0参考代码:#include<stdio.h>int main(){ int a[1000],n; scanf("%d",&n)…… 题解列表 2023年08月03日 0 点赞 0 评论 171 浏览 评分:6.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 评论 139 浏览 评分:0.0
2836: 数组逆序重放 摘要:参考代码:#includeusing namespace std;int a[1000000];int main(){ int n; cin>>n; for(int i=1; i<=…… 题解列表 2023年07月17日 0 点赞 0 评论 123 浏览 评分:6.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int n; …… 题解列表 2023年07月17日 0 点赞 0 评论 49 浏览 评分:0.0
2836 简单c++ 摘要:解题思路:本题最好使用数组解;因为我们不知道有多少个变量.注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000];//…… 题解列表 2023年07月14日 0 点赞 0 评论 305 浏览 评分:9.0
数组逆序重放 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(int argc, char** argv) { int n;…… 题解列表 2023年07月11日 0 点赞 0 评论 114 浏览 评分:6.0