题解列表

筛选

写的跟屎一样

摘要:解题思路:写的跟屎一样注意事项: 写的跟屎一样参考代码:#include<stdio.h>    int a[10],i=0;    int o1,o2,max,min,minp,maxp;    v……

1860: 区间中最大的数

摘要:解题思路:注意事项:参考代码:n=int(input()) ls=list(map(int,input().split())) m=int(input()) for i in range(m):……

c++ 递归栈

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; void DP(int n) {     if(……

三个字符串的排序

摘要:解题思路:直接用short注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s[8];int main(){    for(i……

二级C语言-等差数列

摘要:解题思路:直接模拟注意事项:要用long long参考代码:#include<bits/stdc++.h>using namespace std;long long n,s,t=2;int main(……

三个数字的排序

摘要:解题思路:利用数组+sort进行排序注意事项:注意数组的下标参考代码:#include<iostream>#include<fstream>#include<algorithm>using names……

三个数找最大值

摘要:解题思路:利用max快速找最大值注意事项:max的格式是max(a,b);参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int m……