四下无人 投放C++代码 摘要:###*统计字符数 C++代码* ##### 先五星后复制 栓Q > 给定一个由a-z这26个字符组成的字符串,统计其中哪个字符出现的次数最多。 ###### 题目看上去挺简单的 但只是…… 题解列表 2023年09月24日 0 点赞 0 评论 350 浏览 评分:9.9
1781: 登陆验证问题(一) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1,str2; c…… 题解列表 2023年09月24日 0 点赞 0 评论 330 浏览 评分:0.0
1779: 你的第一个C语言程序 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { cout<<"Just do IT"<<endl…… 题解列表 2023年09月24日 0 点赞 0 评论 750 浏览 评分:2.0
1778: 罗列完美数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int num; int sum=0;…… 题解列表 2023年09月24日 0 点赞 0 评论 299 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; //定义日期结构体 struct Date { int year; …… 题解列表 2023年09月24日 0 点赞 0 评论 330 浏览 评分:9.9
1777: 循环练习之完美数判断 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; int j=0; …… 题解列表 2023年09月24日 0 点赞 0 评论 281 浏览 评分:0.0
利用区间合并的思想求解 摘要:解题思路: 将区间合并之后即可解决区间重合问题注意事项: 注意数据类型参考代码:#include<iostream>#include<algorithm>#include<vector>using n…… 题解列表 2023年09月23日 0 点赞 0 评论 288 浏览 评分:0.0
蓝桥杯算法训练-二进制数数 摘要:解题思路:利用二进制取反和与操作找到最右边1的位置,然后减掉,后面在以此类推注意事项:参考代码:#include<iostream>using namespace std;int lowbit(int…… 题解列表 2023年09月23日 0 点赞 0 评论 389 浏览 评分:0.0
1720: 数据结构-基数排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long tong[100000];int main(){ int…… 题解列表 2023年09月23日 0 点赞 0 评论 372 浏览 评分:0.0
1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码://计数排序:以空间换时间#include <bits/stdc++.h>using namespace std;long long tong[100000];int m…… 题解列表 2023年09月23日 0 点赞 0 评论 346 浏览 评分:0.0