逆序重放不等于逆序输出 摘要:逆序重放改变了数组实际的顺序,而逆序输出并未改变顺序 #include int main() { int arr[100] = { 0 }; in…… 题解列表 2023年09月03日 0 点赞 2 评论 1180 浏览 评分: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 评论 790 浏览 评分:9.9
一维数组--3.数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,a[100]; scanf("%d",&n); //输入; for(int …… 题解列表 2023年03月24日 0 点赞 0 评论 1194 浏览 评分:9.9
编写题解 2836: 数组逆序重放 摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n…… 题解列表 2022年10月23日 0 点赞 0 评论 844 浏览 评分:9.3
2836 数组逆序重放 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100]; scanf("%d",&n); int i; …… 题解列表 2023年03月22日 0 点赞 0 评论 829 浏览 评分:9.0
can can word代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int n; scanf("%d ",&n); int arr[n]; for(int…… 题解列表 2022年11月09日 0 点赞 3 评论 1020 浏览 评分:9.0
2836 简单c++ 摘要:解题思路:本题最好使用数组解;因为我们不知道有多少个变量.注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000];//…… 题解列表 2023年07月14日 0 点赞 0 评论 625 浏览 评分:9.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class P2836 { public static void main(String[] args) …… 题解列表 2022年10月12日 0 点赞 0 评论 903 浏览 评分:6.7
2836: 数组逆序重放 摘要:参考代码:#includeusing namespace std;int a[1000000];int main(){ int n; cin>>n; for(int i=1; i<=…… 题解列表 2023年07月17日 0 点赞 0 评论 549 浏览 评分:6.0
数组逆序重放 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(int argc, char** argv) { int n;…… 题解列表 2023年07月11日 0 点赞 0 评论 428 浏览 评分:6.0