2801: 奇数求和 摘要:```cpp #include using namespace std; int main() { int m,n,t,s=0; cin>>m>>n; if(m>…… 题解列表 2023年01月18日 0 点赞 0 评论 514 浏览 评分:9.9
2794: 求平均年龄 摘要:```cpp #include #include using namespace std; int main() { int n,m,i=0; double sum=0;…… 题解列表 2023年01月18日 0 点赞 0 评论 634 浏览 评分:9.9
1244: 破解简单密码 摘要:```cpp #include using namespace std; int main() { string s; while(cin>>s) { …… 题解列表 2023年01月18日 1 点赞 0 评论 383 浏览 评分:9.9
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 198 浏览 评分:0.0
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 260 浏览 评分:0.0
链表之节点删除 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int id,score; map<int,i…… 题解列表 2023年01月18日 0 点赞 0 评论 266 浏览 评分:0.0
链表删除练习 摘要:解题思路:此题用c++解答相对简单便捷,不得不说stl还是牛注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ list<…… 题解列表 2023年01月17日 0 点赞 0 评论 267 浏览 评分:0.0
小白能看懂的 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int m =…… 题解列表 2023年01月17日 0 点赞 0 评论 229 浏览 评分:0.0
最大子矩阵(线段树题解) 摘要:~~~ /*先分析复杂度,n^2*m^2 的复杂度明显超过1e8,所以想想二分/线段树/双指针解法,本题中先枚举n^2,非常小,先假设固定上下端点,再枚举列,判断每一列的最大最小值,然后运用线段树维…… 题解列表 2023年01月16日 1 点赞 0 评论 1022 浏览 评分:9.9
1003: [编程入门]密码破译 摘要:解题思路:谢邀,这道入门难住我了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int i; c…… 题解列表 2023年01月16日 0 点赞 0 评论 313 浏览 评分:0.0