2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))…… 题解列表 2024年07月31日 0 点赞 0 评论 153 浏览 评分:0.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int n; …… 题解列表 2023年07月17日 0 点赞 0 评论 50 浏览 评分:0.0
数组逆序重放 摘要:解题思路:随便写写,这题目比较常见,故而写题解方便自己查阅注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); …… 题解列表 2024年11月06日 0 点赞 0 评论 93 浏览 评分:0.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a[100],j; scanf("%d",&n); for(i=0;i<…… 题解列表 2023年01月13日 0 点赞 0 评论 221 浏览 评分: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
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int a…… 题解列表 2024年04月06日 0 点赞 0 评论 77 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)…… 题解列表 2024年07月07日 0 点赞 0 评论 70 浏览 评分:0.0
数组逆序重放 摘要:解题思路:用两个数组注意事项:首项的下标加尾项的下标等于n+1参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n],…… 题解列表 2023年12月16日 0 点赞 0 评论 241 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; const int N = 110; int arr[N]; int main(…… 题解列表 2024年01月18日 0 点赞 0 评论 51 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))l.reverse()print(" ".join(map(str,l)))…… 题解列表 2024年07月25日 0 点赞 0 评论 99 浏览 评分:0.0