适合晨练题解(作者亲测~求点赞(〃'▽'〃)) 摘要:解题思路:考验记忆代码注意事项:记得不是所有都要加“;”哦~参考代码:#include <iostream>using namespace std;int main(){ int t; …… 题解列表 2023年05月20日 0 点赞 1 评论 549 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if (a<b) a=b…… 题解列表 2023年05月20日 0 点赞 0 评论 568 浏览 评分:9.9
一个刚刚开始刷题的菜鸟!! 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ int a; while(cin>>a) { for(int i=…… 题解列表 2023年05月20日 0 点赞 0 评论 472 浏览 评分:0.0
1326: 青蛙过河 摘要:```cpp #include #include using namespace std; int a[101],d[101],stone[350000],f[350000]; int ma…… 题解列表 2023年05月20日 0 点赞 0 评论 636 浏览 评分:9.9
1325: [NOIP2006]作业调度方案 摘要:```cpp #include #include using namespace std; const int maxn=20; int n,m,line[maxn*maxn],workli…… 题解列表 2023年05月20日 0 点赞 0 评论 803 浏览 评分:9.9
1324: [NOIP2006]开心的金明 摘要:```cpp #include #include using namespace std; int w[61][3],v[61][3],n,m,f[61][30001][5]; int ma…… 题解列表 2023年05月20日 0 点赞 0 评论 607 浏览 评分:9.9
1323: 能量项链 摘要:```cpp #include using namespace std; int n,e[203],s[203][203],maxn=-1; int main() { cin>>n…… 题解列表 2023年05月20日 0 点赞 0 评论 606 浏览 评分:9.9
2894:肿瘤检测 摘要:解题思路:注意事项:要考虑数组边界的数参考代码:#include<iostream>using namespace std;int main() { int m, n; int i, j, k = 0…… 题解列表 2023年05月19日 0 点赞 0 评论 387 浏览 评分:7.8
扫雷游戏地雷数计算 摘要:解题思路:把*号周围的数字都++注意事项:参考代码:#include<iostream>using namespace std;int main(){ //把*号周边的数++ int n,m; ch…… 题解列表 2023年05月19日 1 点赞 0 评论 609 浏览 评分:4.0
题解 1008: [编程入门]成绩评定 摘要:代码 ```cpp #include using namespace std; int main() { int n; scanf("%d",&n); if(n>=90) { p…… 题解列表 2023年05月19日 0 点赞 0 评论 741 浏览 评分:9.9