1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char L[10001]={0}; int a…… 题解列表 2022年05月08日 0 点赞 0 评论 353 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 摘要:解题思路:奥妙注意事项:参考代码:#include "stdio.hint main() { int n; float sum=0.0,a=2.0,b=1.0; scanf("%d"…… 题解列表 2022年05月08日 0 点赞 0 评论 278 浏览 评分:0.0
Jam的计数法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long LL;namespace IO{ inli…… 题解列表 2022年05月08日 0 点赞 0 评论 447 浏览 评分:0.0
蓝桥杯算法提高VIP-陶陶摘苹果2 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,t,m,a,h;int main() { cin>>n…… 题解列表 2022年05月08日 0 点赞 0 评论 254 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int t;int main() { cin>>s; for…… 题解列表 2022年05月08日 0 点赞 0 评论 282 浏览 评分:0.0
编写题解 1052: [编程入门]链表合并---STL(map)容器求解 摘要:解题思路:map容器,自动排好序。键值对分别存储学号和成绩注意事项:参考代码:#include<iostream> using namespace std; #include<map> void…… 题解列表 2022年05月08日 0 点赞 0 评论 363 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[10],b[10]; in…… 题解列表 2022年05月08日 0 点赞 0 评论 276 浏览 评分:0.0
我的笨蛋方法 摘要:```c #include #define Max 1000 int main(){ int n,num[Max]; scanf("%d",&n); int i; for(i=…… 题解列表 2022年05月08日 0 点赞 0 评论 303 浏览 评分:0.0
编写题解 2024: 链表删除练习--STL 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<deque> using namespace std; void print_Deque(deque<int…… 题解列表 2022年05月08日 0 点赞 0 评论 291 浏览 评分:0.0
字符串拷贝 摘要: #include #include #define Max 1000 char * Copy(char A[Max],char B[Max] ,i…… 题解列表 2022年05月08日 0 点赞 0 评论 375 浏览 评分:0.0