感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a!…… 题解列表 2023年06月03日 0 点赞 0 评论 528 浏览 评分:9.9
晶晶赴约会 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a!…… 题解列表 2023年06月03日 0 点赞 0 评论 366 浏览 评分:9.3
甲流疫情死亡率(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,b; cin>>…… 题解列表 2023年06月03日 0 点赞 0 评论 887 浏览 评分:6.6
带余除法(C++解法) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b…… 题解列表 2023年06月03日 0 点赞 0 评论 460 浏览 评分:0.0
打印ASCII码(C++)代码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int)a<…… 题解列表 2023年06月03日 0 点赞 0 评论 464 浏览 评分:6.0
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double f,a,b,c,d…… 题解列表 2023年06月03日 0 点赞 0 评论 354 浏览 评分:0.0
#C++1745—— 继续畅通工程(带权并查集) 摘要:解题思路:找出有根节点的“家族”即还未畅通的“村庄群”,按权值排序后归并统计数量。注意事项:对于之前已经连接的道路,先预处理合并,再用cmp处理权值较小的边。AC代码:#include <iostre…… 题解列表 2023年06月02日 0 点赞 0 评论 524 浏览 评分:0.0
1328: 移动服务员 摘要:```cpp #include #include #include using namespace std; int f[2][210][210],p[1010],c[210][210],l…… 题解列表 2023年06月02日 0 点赞 0 评论 837 浏览 评分:9.9
1327: [NOIP2005]等价表达式 摘要:```cpp #include #include using namespace std; const int mod=10001; char w[51],c[51]; int a[100…… 题解列表 2023年06月02日 0 点赞 0 评论 561 浏览 评分:9.9
优质题解 2797: 最高的分数(C++STL)解题 摘要:###### 解题思路: 将所有的数据存储到数组中去,,使用sort函数对他们进行排序,然后再输出就可以啦 ###### 注意事项: 在使用sort函数前,先了解一下它吧 它是ST…… 题解列表 2023年06月02日 0 点赞 0 评论 1333 浏览 评分:9.9