1932简单sort函数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[250],i=0; while(cin…… 题解列表 2022年07月29日 0 点赞 0 评论 329 浏览 评分:0.0
1931简单数组 摘要:解题思路:遇0跳出注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[250],i=0; while…… 题解列表 2022年07月29日 0 点赞 0 评论 357 浏览 评分:0.0
神奇的fansC++必过题解 摘要:解题思路:排序后判断注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main() { bool d=1; int c=0,i,j,…… 题解列表 2022年07月29日 0 点赞 0 评论 422 浏览 评分:7.3
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int num = 0; char ch = 0; scanf("%d", &nu…… 题解列表 2022年07月29日 0 点赞 0 评论 295 浏览 评分:10.0
编写题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0, c = 0; scanf("%d %d %d", …… 题解列表 2022年07月29日 0 点赞 0 评论 334 浏览 评分:0.0
蓝桥杯2015年第六届真题-切开字符串c++使用string与map进行求解 摘要:解题思路:首先题目要求的是将字符串任意切割成两半(且两半都不能为空,说实话有一半都是空的那其实也没切对吧),然后在前一部分寻找正回文子串(长度为奇数的回文串,注意这里包括1个字符的子串)并统计下来,后…… 题解列表 2022年07月29日 0 点赞 0 评论 648 浏览 评分:9.9
编写题解 1007: [编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x = 0, y = 0; scanf("%d", &x); if …… 题解列表 2022年07月29日 0 点赞 0 评论 279 浏览 评分:0.0
编写题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0, c = 0; int max = 0; sca…… 题解列表 2022年07月29日 0 点赞 0 评论 384 浏览 评分:0.0
C# 蓝桥杯算法训练VIP-最长字符串-size 摘要:```cpp #include using namespace std; string s,ss; int main() { for(int i=0;i>s; if(…… 题解列表 2022年07月29日 0 点赞 0 评论 298 浏览 评分:0.0
C# 字符串编辑-insert -erase-find 摘要:```cpp #include using namespace std; int main() { int t=0; string s; char n,m,a1,a2; …… 题解列表 2022年07月29日 0 点赞 0 评论 398 浏览 评分:0.0