题解列表
1096: Minesweeper
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M……
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {……
1099: 校门外的树
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char L[10001]={0}; int a……
编写题解 1018: [编程入门]有规律的数列求和
摘要:解题思路:奥妙注意事项:参考代码:#include "stdio.hint main() { int n; float sum=0.0,a=2.0,b=1.0; scanf("%d"……
蓝桥杯算法提高VIP-陶陶摘苹果2
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,t,m,a,h;int main() { cin>>n……
蓝桥杯算法训练VIP-判定字符位置
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int t;int main() { cin>>s; for……
编写题解 1052: [编程入门]链表合并---STL(map)容器求解
摘要:解题思路:map容器,自动排好序。键值对分别存储学号和成绩注意事项:参考代码:#include<iostream>
using namespace std;
#include<map>
void……
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int a[10],b[10];
in……