2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[100000];//不限制范围int main(){ …… 题解列表 2024年04月08日 0 点赞 0 评论 223 浏览 评分:9.9
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long b; cin>>b; …… 题解列表 2024年04月07日 0 点赞 0 评论 93 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int a…… 题解列表 2024年04月06日 0 点赞 0 评论 76 浏览 评分:0.0
2836: 数组逆序重放 摘要:参考代码:n = int(input()) print(' '.join(list(map(str, input().split()))[::-1]))…… 题解列表 2024年03月20日 0 点赞 0 评论 126 浏览 评分:0.0
累了,休息会 摘要:解题思路:注意事项:参考代码: #include<bits/stdc++.h> using nam…… 题解列表 2024年03月03日 0 点赞 0 评论 159 浏览 评分:9.9
C++ : 数组逆序重放 摘要:解题思路: 超级超级简单注意事项: 注意逆序输出的时候,最大的位置是 n-1,不是 n 了参考代码:#include<iostream>using namespace std;int main()…… 题解列表 2024年02月05日 0 点赞 0 评论 265 浏览 评分:9.9
数组逆序重放的三种满分题解 摘要:解题思路:注意事项:参考代码:第一种.巧调放入位置法n=int(input())list1=list(map(int,input().split()))ls=[]for i in list1: …… 题解列表 2024年02月01日 0 点赞 0 评论 200 浏览 评分:9.9
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; const int N = 110; int arr[N]; int main(…… 题解列表 2024年01月18日 0 点赞 0 评论 51 浏览 评分:0.0
数组存放输入数据,然后逆序输出即可,不需要改变数组 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin >> n; …… 题解列表 2023年12月31日 0 点赞 0 评论 557 浏览 评分:9.9
数组逆序重放 摘要:解题思路:用两个数组注意事项:首项的下标加尾项的下标等于n+1参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n],…… 题解列表 2023年12月16日 0 点赞 0 评论 240 浏览 评分:0.0