reverse倒序列表 摘要:解题思路:注意事项:参考代码:n=int(input())nums=list(map(int,input().split())) nums.reverse()for i in nums: pr…… 题解列表 2023年11月26日 0 点赞 0 评论 589 浏览 评分:9.9
逆序重放不等于逆序输出 摘要:逆序重放改变了数组实际的顺序,而逆序输出并未改变顺序 #include int main() { int arr[100] = { 0 }; in…… 题解列表 2023年09月03日 0 点赞 2 评论 953 浏览 评分:9.9
编写题解 2836: 数组逆序重放 摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n…… 题解列表 2022年10月23日 0 点赞 0 评论 614 浏览 评分:9.3
can can word代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int n; scanf("%d ",&n); int arr[n]; for(int…… 题解列表 2022年11月09日 0 点赞 3 评论 858 浏览 评分:9.0
2836 数组逆序重放 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100]; scanf("%d",&n); int i; …… 题解列表 2023年03月22日 0 点赞 0 评论 596 浏览 评分:9.0
2836 简单c++ 摘要:解题思路:本题最好使用数组解;因为我们不知道有多少个变量.注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000];//…… 题解列表 2023年07月14日 0 点赞 0 评论 346 浏览 评分:9.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class P2836 { public static void main(String[] args) …… 题解列表 2022年10月12日 0 点赞 0 评论 604 浏览 评分:6.7
数组逆序重放 摘要:解题思路:注意事项:逆序打印时,从n-1开始,因为最后要回到0参考代码:#include<stdio.h>int main(){ int a[1000],n; scanf("%d",&n)…… 题解列表 2023年08月03日 0 点赞 0 评论 245 浏览 评分:6.0
数组逆序重放(easy) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[101]; cin>>n; for(int…… 题解列表 2022年11月09日 0 点赞 0 评论 537 浏览 评分:6.0
新手 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t,i; scanf("%d",&n); int a[n]; for(i=0…… 题解列表 2024年12月11日 0 点赞 0 评论 584 浏览 评分:6.0