题解列表
[编程入门]选择排序
摘要:解题思路:直接排序注意事项:sort参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){ fo……
1669: 求圆的面积
摘要:解题思路:直接求注意事项:用double参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;d……
[编程入门]水仙花数判断
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<153<<endl<<370<<endl<<37……
二级C语言-温度转换
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;double f,c;……
1978: 分类计算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){ cin>>a>>b; ……
蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm> using namespace std;long long……
信息学奥赛一本通T1535-数列操作-题解(各语言代码)
摘要:**C**
```c
#include
#include
int*l,n,m;
void update(int x,int y){
do l[x]+=y;
while((x+=x&-……
题解 1393: 钟神赛车 sort
摘要:#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int a[1100],b[1100]……
链表和并 (思路应该明确)
摘要:解题思路:循环输入的次数是n+m的和然后吧a和b一起加入到lis列表里面记得a,b要用括号括起来然后用两个for循环输出注意事项:记得a,b要用括号括起来最后加一个换行就行了参考代码:n,m = ma……