3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2022年11月14日 0 点赞 0 评论 256 浏览 评分:2.7
选择法)最大数位置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1001]; int i; int j; int n; int max…… 题解列表 2022年11月21日 0 点赞 0 评论 268 浏览 评分:6.7
简洁的方式找到最大值的下标(C语言) 摘要:解题思路: 简单遍历数组内元素然后找到最大值再输出下标注意事项:参考代码:#include<stdio.h> int main() { int a, b, c = 0; i…… 题解列表 2022年11月22日 0 点赞 0 评论 190 浏览 评分:0.0
十几行代码直接搞定好叭 摘要:解题思路:#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
最大数位置 摘要:解题思路:先用数组存储数据,然后将第一个值定为最大值,利用循环遍历数组和最大值比较如果大于最大值,将这个值赋值为最大值。注意事项:输出的i要加一参考代码:#include<stdio.h>#inclu…… 题解列表 2022年12月03日 0 点赞 2 评论 862 浏览 评分:9.9
简洁易懂,快来学吧 摘要:解题思路:这里用到选择查找法注意事项:注意这里的位置号不是数组下标,数组下标是0开始的,应该是下标加1参考代码:#include <stdio.h>int main(){ int a[100]; in…… 题解列表 2022年12月04日 0 点赞 0 评论 512 浏览 评分:9.9
3020: 最大数位置 摘要:```cpp #include using namespace std; int main() { int n,a[1001],maxx=1; cin>>n; f…… 题解列表 2023年01月09日 0 点赞 0 评论 460 浏览 评分:9.9
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
编写题解 3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[1001],maxx=1; cin>>n; …… 题解列表 2023年02月11日 0 点赞 0 评论 225 浏览 评分:9.9
最大数位置 摘要:解题思路:注意事项:参考代码:#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