一维数组--3.数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,a[100]; scanf("%d",&n); //输入; for(int …… 题解列表 2023年03月24日 0 点赞 0 评论 824 浏览 评分:9.9
2836 数组逆序重放 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100]; scanf("%d",&n); int i; …… 题解列表 2023年03月22日 0 点赞 0 评论 553 浏览 评分:9.0
2836: 数组逆序重放 摘要:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i …… 题解列表 2023年03月01日 0 点赞 0 评论 166 浏览 评分: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 评论 220 浏览 评分:0.0
2836: 数组逆序重放 摘要:```cpp #include using namespace std; int main() { int n,a[101]; cin>>n; for(int i=0;…… 题解列表 2023年01月11日 0 点赞 1 评论 542 浏览 评分:9.9
数组逆序重放(easy) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[101]; cin>>n; for(int…… 题解列表 2022年11月09日 0 点赞 0 评论 479 浏览 评分:6.0
can can word代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int n; scanf("%d ",&n); int arr[n]; for(int…… 题解列表 2022年11月09日 0 点赞 3 评论 800 浏览 评分:9.0
编写题解 2836: 数组逆序重放 摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n…… 题解列表 2022年10月23日 0 点赞 0 评论 539 浏览 评分:9.3
数组逆序重放 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class P2836 { public static void main(String[] args) …… 题解列表 2022年10月12日 0 点赞 0 评论 547 浏览 评分:6.7