姓名排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; int cmp(string a,string …… 题解列表 2020年03月16日 0 点赞 0 评论 1250 浏览 评分:9.0
字符串排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; typedef struct str{ ch…… 题解列表 2020年03月16日 0 点赞 0 评论 892 浏览 评分:0.0
小O的图案-题解(C++代码)STL练习 摘要: #include #include using namespace std; void print(vector& vv,int& t){ fo…… 题解列表 2020年03月16日 0 点赞 0 评论 892 浏览 评分:0.0
数组排序 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n){ in…… 题解列表 2020年03月15日 0 点赞 0 评论 1315 浏览 评分:0.0
对称矩阵-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n){ in…… 题解列表 2020年03月15日 0 点赞 0 评论 1201 浏览 评分:0.0
旋桜-蓝桥杯历届试题-翻硬币-题解(C++代码) 摘要:这题白给 ```cpp #include #include using namespace std; string str1, str2; int ans = 0; …… 题解列表 2020年03月15日 0 点赞 0 评论 939 浏览 评分:9.9
蓝桥杯算法训练VIP-寂寞的数-题解(C++代码)-9%错误 摘要:###### 这个题对细节要求很高一直错9% 1.if(produce(i)>n; for(int i=1;i…… 题解列表 2020年03月15日 0 点赞 0 评论 982 浏览 评分:9.9
矩阵最大值 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int m,n; while(cin>>m>>n){ …… 题解列表 2020年03月15日 0 点赞 0 评论 814 浏览 评分:0.0
C语言考试练习题_排列 (C++代码) 摘要:1. 解题思路 这道题考查的是对深度优先搜索遍历的练习,输出结果分成4组,每组6行,可以看出,第一组没有第4个数字,第二组没有第三个数组...以此类推。 把每个符合条件的数字依次放入output数…… 题解列表 2020年03月15日 0 点赞 1 评论 908 浏览 评分:6.0
二级C语言-成绩归类-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int score,a=0,b=0,c=0; while(cin…… 题解列表 2020年03月15日 0 点赞 0 评论 636 浏览 评分:0.0