C++ : 数组逆序重放 摘要:解题思路: 超级超级简单注意事项: 注意逆序输出的时候,最大的位置是 n-1,不是 n 了参考代码:#include<iostream>using namespace std;int main()…… 题解列表 2024年02月05日 0 点赞 0 评论 268 浏览 评分:9.9
编写题解 2836: 数组逆序重放 摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n…… 题解列表 2022年10月23日 0 点赞 0 评论 544 浏览 评分:9.3
2836 数组逆序重放 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100]; scanf("%d",&n); int i; …… 题解列表 2023年03月22日 0 点赞 0 评论 558 浏览 评分:9.0
2836 简单c++ 摘要:解题思路:本题最好使用数组解;因为我们不知道有多少个变量.注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000];//…… 题解列表 2023年07月14日 0 点赞 0 评论 312 浏览 评分: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 评论 813 浏览 评分:9.0
数组逆序重放 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class P2836 { public static void main(String[] args) …… 题解列表 2022年10月12日 0 点赞 0 评论 554 浏览 评分:6.7
新手 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t,i; scanf("%d",&n); int a[n]; for(i=0…… 题解列表 2024年12月11日 0 点赞 0 评论 423 浏览 评分:6.0
数组逆序重放(easy) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[101]; cin>>n; for(int…… 题解列表 2022年11月09日 0 点赞 0 评论 491 浏览 评分:6.0
2836: 数组逆序重放 摘要:参考代码:#includeusing namespace std;int a[1000000];int main(){ int n; cin>>n; for(int i=1; i<=…… 题解列表 2023年07月17日 0 点赞 0 评论 136 浏览 评分:6.0
数组逆序重放 摘要:解题思路:注意事项:逆序打印时,从n-1开始,因为最后要回到0参考代码:#include<stdio.h>int main(){ int a[1000],n; scanf("%d",&n)…… 题解列表 2023年08月03日 0 点赞 0 评论 181 浏览 评分:6.0