2750: 字符菱形 摘要:```cpp #include #include using namespace std; int main() { char a; a=getchar(); for(int i…… 题解列表 2022年11月19日 0 点赞 0 评论 1085 浏览 评分:8.8
2749: Hello, World! 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2022年11月19日 0 点赞 0 评论 679 浏览 评分:6.8
1183: 人见人爱A+B 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; while(n--) …… 题解列表 2022年11月19日 0 点赞 0 评论 406 浏览 评分:9.9
1182: 人民币问题 摘要:```cpp #include using namespace std; int main() { int a,b,c,count=0; int sum; cin…… 题解列表 2022年11月19日 0 点赞 0 评论 328 浏览 评分:9.9
1181: 不容易系列2 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2022年11月19日 0 点赞 0 评论 412 浏览 评分:9.9
c++字符串加密病历单 摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans…… 题解列表 2022年11月19日 0 点赞 0 评论 871 浏览 评分:7.3
自守数问题之满满的套路(格式+数据范围) 摘要:解题思路: 题前小磕:这一题真是满满的套路啊,足足被卡了半个多小时,第一次错误是答案少了两个;第二次是格式错误。但我好不容易AC了这一题,我必须写个题解给大家避避坑。 …… 题解列表 2022年11月19日 0 点赞 0 评论 442 浏览 评分:0.0
2120: 信息学奥赛一本通T1312-昆虫繁殖 摘要:解题思路:设两个数组,一个代表总数,一个代表卵数。注意事项:参考代码:#include<bits/stdc++.h> using namespace std; long long a[10000]…… 题解列表 2022年11月19日 0 点赞 0 评论 611 浏览 评分:9.9
next_permutation全排序 摘要:```cpp #include //next_permutation全排序 using namespace std; int main() { int n,len=0; cin>…… 题解列表 2022年11月18日 0 点赞 0 评论 335 浏览 评分:0.0
优质题解 第k极值(C/C++)+ 常见误区 摘要:解题思路: 题前小磕:这一题一看题目就非常简单,但是为什么我还要写这个题解呢?这个代码改了好久....因为淋过雨,所以要帮你们撑伞!!!(好久没有写题解了,更新一…… 题解列表 2022年11月18日 1 点赞 0 评论 913 浏览 评分:9.9