2215: 蓝桥杯算法训练-1的个数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std; int main() { long long a; int count=0; …… 题解列表 2023年10月29日 0 点赞 0 评论 539 浏览 评分:0.0
直方图(C语言) 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); int a[n]; int max=-1;//题目说…… 题解列表 2023年10月30日 0 点赞 0 评论 530 浏览 评分:0.0
2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月30日 0 点赞 0 评论 417 浏览 评分:0.0
2333: 信息学奥赛一本通T1182-合影效果 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; struct student{ str…… 题解列表 2023年10月30日 0 点赞 0 评论 494 浏览 评分:0.0
2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,sum=0; cin>>n…… 题解列表 2023年10月30日 0 点赞 0 评论 434 浏览 评分:0.0
2547: [CSP-J2019] 数字游戏 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; int cou…… 题解列表 2023年10月30日 0 点赞 0 评论 466 浏览 评分:0.0
编写题解 2554: 交点 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { doubl…… 题解列表 2023年10月30日 0 点赞 0 评论 396 浏览 评分:0.0
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { strin…… 题解列表 2023年10月30日 0 点赞 0 评论 442 浏览 评分:0.0
2757: 浮点数向零舍入 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { double …… 题解列表 2023年10月30日 0 点赞 0 评论 475 浏览 评分:0.0
c++字符串简单解法 遍历字符串 摘要:解题思路:范围for函数,判断是否等于首个字符注意事项:参考代码:#include<iostream>using namespace std;int main(){ char ch1,ch2; str…… 题解列表 2023年10月30日 0 点赞 0 评论 422 浏览 评分:0.0