3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1e7;ll a[N];in…… 题解列表 2024年05月05日 0 点赞 0 评论 60 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100],max,max_i; scanf ("%d",&n);…… 题解列表 2023年10月25日 0 点赞 0 评论 78 浏览 评分:0.0
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 1001int main(){int a[N],max,p=0,n;a[0]=0;scanf("%d",&n);in…… 题解列表 2023年01月17日 0 点赞 0 评论 121 浏览 评分:0.0
利用指针遍历得到答案 摘要:解题思路:循环输入数据,利用指针遍历,然后寻找最大值,记录位置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n;…… 题解列表 2023年12月19日 0 点赞 0 评论 70 浏览 评分:0.0
最大数位置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[100],i; int max; int max_position; scanf("%d",…… 题解列表 2023年02月17日 0 点赞 0 评论 100 浏览 评分:0.0
index查找列表下标 摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))print(a.index(max(a))+1)…… 题解列表 2024年03月02日 0 点赞 0 评论 117 浏览 评分:0.0
简洁的方式找到最大值的下标(C语言) 摘要:解题思路: 简单遍历数组内元素然后找到最大值再输出下标注意事项:参考代码:#include<stdio.h> int main() { int a, b, c = 0; i…… 题解列表 2022年11月22日 0 点赞 0 评论 190 浏览 评分:0.0
题解 3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1e7;ll a[N];in…… 题解列表 2024年04月21日 0 点赞 0 评论 63 浏览 评分:0.0
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[100000];int main(){ int n,maxx=1,…… 题解列表 2023年07月18日 0 点赞 0 评论 162 浏览 评分:0.0
编写题解 3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int n,max=0; cin>>n;int a[n];fo…… 题解列表 2024年06月11日 0 点赞 0 评论 74 浏览 评分:0.0