1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:```cpp #include using namespace std; int main() { unsigned int start,step; string s; …… 题解列表 2023年02月01日 0 点赞 0 评论 185 浏览 评分:9.9
1449: 蓝桥杯2014年第五届真题-波动数列 摘要:```cpp #include using namespace std; int n,s,a,b,f[1001][1001]; int get_mod(int a ,int b) { …… 题解列表 2023年02月01日 0 点赞 1 评论 473 浏览 评分:9.9
1463: 蓝桥杯基础练习VIP-Sine之舞 摘要:```cpp #include using namespace std; string s; void dfs(int begin,int num) { if(begin==num…… 题解列表 2023年02月01日 0 点赞 0 评论 256 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:```cpp #include using namespace std; string zm; int n; void deal_rev(int a,int b) { if(a>…… 题解列表 2023年02月01日 0 点赞 0 评论 547 浏览 评分:9.9
超简化版 字符串的查找删除 使用 substr erase 及cin>>读入\n解决方法 摘要:```cpp #include #include using namespace std; int main() { string shor,mark; string a…… 题解列表 2023年01月31日 0 点赞 0 评论 336 浏览 评分:9.9
基础的筛选n内素数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_prim(int i){ bool ans=true; for(i…… 题解列表 2023年01月31日 0 点赞 0 评论 186 浏览 评分:0.0
1240: 生日日数 摘要:```cpp #include using namespace std; bool check(int n) { if(n%4==0&&n%100||n%400==0) …… 题解列表 2023年01月31日 0 点赞 0 评论 319 浏览 评分:9.9
计算(a+b)*c的值 摘要:解题思路:输入后直接输出注意事项:无参考代码:#include<iostream> using namespace std; int main( ){ int a,b,c; cin>>a>>b…… 题解列表 2023年01月31日 0 点赞 0 评论 352 浏览 评分:9.9
1239: 班级人数 摘要:```cpp #include using namespace std; float least_stu(float a,float b) { int N=1; bool …… 题解列表 2023年01月31日 0 点赞 0 评论 228 浏览 评分:9.9
1238: 演讲大赛评分 摘要:```cpp #include #include #include using namespace std; int main() { float a[7],b,c,d,e,f,…… 题解列表 2023年01月31日 0 点赞 0 评论 243 浏览 评分:9.9