复习排序(本题用最后一种方法,前几个也可以) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin >> n; int a[n],i=-1…… 题解列表 2024年03月03日 0 点赞 0 评论 79 浏览 评分:0.0
整数序列的元素最大跨度值C 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a[1000],min,max; scanf("%d",&n); for(i=…… 题解列表 2024年02月16日 0 点赞 0 评论 41 浏览 评分:0.0
2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:最小值初值最大,最大值初值最小#include<bits/stdc++.h>using namespace std;int main(){ int n,b,c=INT_MAX…… 题解列表 2024年01月13日 0 点赞 0 评论 63 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; import java.util.Arrays; public class Main { public static vo…… 题解列表 2024年01月11日 0 点赞 0 评论 121 浏览 评分:9.9
整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int maxx = 0, minn = INT_MA…… 题解列表 2024年01月10日 0 点赞 1 评论 44 浏览 评分:2.0
题解 2798整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,minn=INT_MAX;…… 题解列表 2024年01月10日 0 点赞 0 评论 130 浏览 评分:9.9
题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m…… 题解列表 2024年01月09日 0 点赞 0 评论 32 浏览 评分:0.0
题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum,m,sun; sum=0; …… 题解列表 2024年01月09日 0 点赞 0 评论 137 浏览 评分:9.9
随便写 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main (String[] arg…… 题解列表 2023年12月05日 0 点赞 0 评论 111 浏览 评分:7.3
2798;整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;//老师教的int main(){//老师教的 long long m=1e18;//老师教的 int …… 题解列表 2023年12月03日 0 点赞 0 评论 113 浏览 评分:9.5