蓝桥杯算法提高VIP-输出正反三角形 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int a, b; cin >> a >>…… 题解列表 2022年05月08日 0 点赞 0 评论 247 浏览 评分:2.0
蓝桥杯算法提高VIP-输出九九乘法表 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" Nine-by-nine Multipli…… 题解列表 2022年05月08日 0 点赞 0 评论 301 浏览 评分:2.0
蓝桥杯算法提高VIP-计算质因子 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool isprime(int x) { //判断质数 for(int i …… 题解列表 2022年05月08日 0 点赞 0 评论 237 浏览 评分:2.0
Jam的计数法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long LL;namespace IO{ inli…… 题解列表 2022年05月08日 0 点赞 0 评论 361 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char L[10001]={0}; int a…… 题解列表 2022年05月08日 0 点赞 0 评论 277 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {…… 题解列表 2022年05月08日 0 点赞 0 评论 201 浏览 评分:0.0
1096: Minesweeper 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M…… 题解列表 2022年05月08日 0 点赞 0 评论 245 浏览 评分:0.0
[递归]母牛的故事 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int main () { int cow[56] = {0,1,2,3,…… 题解列表 2022年05月08日 0 点赞 0 评论 215 浏览 评分:0.0
信息学奥赛一本通T1252-走迷宫 摘要:``` #include #define x first #define y second using namespace std; typedef pair pii; …… 题解列表 2022年05月08日 0 点赞 0 评论 391 浏览 评分:6.0
蓝桥杯算法训练VIP-方格取数(c++代码) 摘要:解题思路:思路见代码注意事项:参考代码:#include<cstdio> #include<algorithm> using namespace std; struct point { …… 题解列表 2022年05月08日 0 点赞 0 评论 275 浏览 评分:9.9