3020: 最大数位置 摘要:``` #include using namespace std; int a[100000],n,maxx,num; int main(){ cin>>n; maxx = -1; …… 题解列表 2023年11月22日 0 点赞 0 评论 177 浏览 评分:9.9
十几行代码直接搞定好叭 摘要:解题思路:#include <stdio.h> int main() { int n,i,t; scanf("%d",&n); double a[n+1],an,max;//不用i…… 题解列表 2022年11月22日 0 点赞 2 评论 641 浏览 评分:9.6
选择法)最大数位置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1001]; int i; int j; int n; int max…… 题解列表 2022年11月21日 0 点赞 0 评论 268 浏览 评分:6.7
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2022年11月14日 0 点赞 0 评论 256 浏览 评分:2.7
利用指针遍历得到答案 摘要:解题思路:循环输入数据,利用指针遍历,然后寻找最大值,记录位置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n;…… 题解列表 2023年12月19日 0 点赞 0 评论 70 浏览 评分:0.0
3020:最大位数 摘要:解题思路:注意事项:参考代码:n = int(input())list_ = list(map(int, input().strip().split()))m = max(list_)i = list…… 题解列表 2024年09月28日 0 点赞 0 评论 66 浏览 评分:0.0
简洁的方式找到最大值的下标(C语言) 摘要:解题思路: 简单遍历数组内元素然后找到最大值再输出下标注意事项:参考代码:#include<stdio.h> int main() { int a, b, c = 0; i…… 题解列表 2022年11月22日 0 点赞 0 评论 190 浏览 评分: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
题解 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;typedef long long ll;int main(){ int n…… 题解列表 2024年05月05日 0 点赞 0 评论 57 浏览 评分:0.0