题解 2836: 数组逆序重放 摘要:解题思路:在正向循环后需要有有一个反向循环注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long l…… 题解列表 2025年03月16日 0 点赞 0 评论 164 浏览 评分:0.0
2836: 数组逆序重放题解 摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;…… 题解列表 2025年03月16日 0 点赞 0 评论 127 浏览 评分:0.0
2836: 数组逆序重放题解 摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;…… 题解列表 2025年03月16日 0 点赞 0 评论 114 浏览 评分:0.0
C++:map容器简单使用方法_练习 摘要:解题思路:注意事项://map<int,int>mp ;//创立一个位置【键,相当于数组下标】是int类型,元素【值】也是int类型的叫mp的map容器//map容器按照键的大小排列 两者…… 题解列表 2025年03月07日 0 点赞 0 评论 110 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:其实很简单。只需要输入数组后,将数组逆序输出就可以了。注意事项:逆序输出是“i--”,别写成“i--”了,否则会陷入死循环。参考代码:#include<bits/stdc++.h>using…… 题解列表 2024年06月26日 0 点赞 0 评论 218 浏览 评分:9.9
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[100000];//不限制范围int main(){ …… 题解列表 2024年04月08日 0 点赞 0 评论 282 浏览 评分:9.9
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long b; cin>>b; …… 题解列表 2024年04月07日 0 点赞 0 评论 138 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int a…… 题解列表 2024年04月06日 0 点赞 0 评论 125 浏览 评分:0.0
累了,休息会 摘要:解题思路:注意事项:参考代码: #include<bits/stdc++.h> using nam…… 题解列表 2024年03月03日 0 点赞 0 评论 221 浏览 评分:9.9
C++ : 数组逆序重放 摘要:解题思路: 超级超级简单注意事项: 注意逆序输出的时候,最大的位置是 n-1,不是 n 了参考代码:#include<iostream>using namespace std;int main()…… 题解列表 2024年02月05日 0 点赞 0 评论 317 浏览 评分:9.9