reverse倒序列表 摘要:解题思路:注意事项:参考代码:n=int(input())nums=list(map(int,input().split())) nums.reverse()for i in nums: pr…… 题解列表 2023年11月26日 0 点赞 0 评论 746 浏览 评分:9.9
逆序重放不等于逆序输出 摘要:逆序重放改变了数组实际的顺序,而逆序输出并未改变顺序 #include int main() { int arr[100] = { 0 }; in…… 题解列表 2023年09月03日 0 点赞 2 评论 1096 浏览 评分:9.9
一维数组--3.数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,a[100]; scanf("%d",&n); //输入; for(int …… 题解列表 2023年03月24日 0 点赞 0 评论 1043 浏览 评分:9.9
2836: 数组逆序重放 摘要:```cpp #include using namespace std; int main() { int n,a[101]; cin>>n; for(int i=0;…… 题解列表 2023年01月11日 0 点赞 1 评论 709 浏览 评分:9.9
数组逆序重放 摘要:解题思路:随便写写,这题目比较常见,故而写题解方便自己查阅注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); …… 题解列表 2024年11月06日 2 点赞 0 评论 384 浏览 评分:10.0
C语言 指针解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ; int a[110]={0} ; int *p=a ; …… 题解列表 2024年12月08日 1 点赞 0 评论 486 浏览 评分:10.0
2836: 数组逆序重放题解 摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;…… 题解列表 2025年03月16日 0 点赞 0 评论 396 浏览 评分:10.0