C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100],max,max_i; scanf ("%d",&n);…… 题解列表 2023年10月25日 0 点赞 0 评论 144 浏览 评分:0.0
c语言与c++结合-最大数位置 摘要:解题思路:注意事项:long long参考代码:#include<iostream>usingnamespacestd;intmain(){…… 题解列表 2025年04月20日 0 点赞 0 评论 58 浏览 评分:0.0
两种方法:递归函数 && 简单for循环 摘要:解题思路:注意事项:参考代码://递归函数#include<iostream>#include<vector>using namespace std ;long long ko…… 题解列表 2025年04月17日 0 点赞 0 评论 34 浏览 评分:0.0
一个有点复杂的方法,不如其他大佬的优质解法(本人刚起步学习哈) 摘要:#includeint main(void){ int num; scanf("%d",&num); int a[num]; for(int…… 题解列表 2025年02月17日 0 点赞 0 评论 176 浏览 评分:0.0
求最值索引,定指标max/j,在循环中不断替换 摘要:解题思路:求最值索引,定指标max/j,在循环中不断替换。输出记得索引+1。注意事项:参考代码:#include<iostream> using namespace std; int main()…… 题解列表 2024年12月10日 1 点赞 0 评论 209 浏览 评分:0.0
3020:最大位数 摘要:解题思路:注意事项:参考代码:n = int(input())list_ = list(map(int, input().strip().split()))m = max(list_)i = list…… 题解列表 2024年09月28日 0 点赞 0 评论 224 浏览 评分: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 评论 230 浏览 评分:0.0
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1e7;ll a[N];in…… 题解列表 2024年05月05日 0 点赞 0 评论 175 浏览 评分:0.0
题解 3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ int n…… 题解列表 2024年05月05日 0 点赞 0 评论 151 浏览 评分: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 评论 160 浏览 评分:0.0