题解列表
行编辑程序代码Stack两种思路
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str;……
两种方法:不用deque和使用deque
摘要:解题思路:注意事项:参考代码:#include <cassert>#include <cctype>#include <cerrno>#include <cf……
蓝桥杯2025年第十六届省赛真题-2025 图形
摘要:解题思路:把2025放到数组后输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int h,w;int g[4] = {2,0……
1020: [编程入门]猴子吃桃的问题
摘要:解题思路:注意事项:注意count要从1开始,因为假设有10个桃子,第一天吃了5+1个,余4个;那第二天吃了2+1个,余1个;第三天想吃的时候是发现只有1个了,所以这这里要多1参考代码:public ……
1022: [编程入门]筛选N以内的素数
摘要:解题思路:注意事项:参考代码:publicstaticvoidmain(String[]args){……
题解 3320: 蓝桥杯2025年第十六届省赛真题-产值调整
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,b,c; ……
新生的入队仪式(C语言)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100000]; int i,j,n,m……