题解列表

筛选

递增三元组

摘要:解题思路:前缀和形式注意事项:参考代码:# 前缀和 n=int(input()) als=list(map(int,input().split())) bls=list(map(int,inpu……

1978: 分类计算

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){    cin>>a>>b;   ……

二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;double f,c;……

[编程入门]水仙花数判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<153<<endl<<370<<endl<<37……

1669: 求圆的面积

摘要:解题思路:直接求注意事项:用double参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;d……

[编程入门]选择排序

摘要:解题思路:直接排序注意事项:sort参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){     fo……